Searched defs:egl_display_t (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A Degl_display.cpp69 egl_display_t* eglDisplay = egl_display_t::get(dpy);
73 egl_display_t egl_display_t::sDisplay[NUM_DISPLAYS];
75 egl_display_t::egl_display_t() : function in class:android::egl_display_t
79 egl_display_t::~egl_display_t() {
84 egl_display_t* egl_display_t
[all...]
H A Degl_display.h49 class EGLAPI egl_display_t { // marked as EGLAPI for testing purposes class in namespace:android
50 static egl_display_t sDisplay[NUM_DISPLAYS];
61 egl_display_t();
62 ~egl_display_t();
74 static egl_display_t* get(EGLDisplay dpy);
135 // An egl_display_ptr is a kind of smart pointer for egl_display_t objects.
136 // It doesn't refcount the egl_display_t, but does ensure that the underlying
141 explicit egl_display_ptr(egl_display_t* dpy): mDpy(dpy) {}
157 const egl_display_t* operator->() const { return mDpy; }
158 egl_display_t* operato
[all...]
/frameworks/native/opengl/libagl/
H A Degl.cpp122 struct egl_display_t struct in namespace:android
124 egl_display_t() : type(0), initialized(0) { } function in struct:android::egl_display_t
126 static egl_display_t& get_display(EGLDisplay dpy);
136 static egl_display_t gDisplays[NUM_DISPLAYS];
138 egl_display_t& egl_display_t::get_display(EGLDisplay dpy) {
1289 if (egl_display_t::is_valid(dpy) == EGL_FALSE)
1338 if (egl_display_t::is_valid(dpy) == EGL_FALSE)
1384 if (egl_display_t::is_valid(dpy) == EGL_FALSE)
1447 egl_display_t
[all...]

Completed in 184 milliseconds