HomeSort by relevance Sort by last modified time
    Searched defs:egl_display_t (Results 1 - 3 of 3) sorted by null

  /frameworks/native/opengl/libs/EGL/
egl_display.cpp 70 egl_display_t egl_display_t::sDisplay[NUM_DISPLAYS];
72 egl_display_t::egl_display_t() : function in class:android::egl_display_t
76 egl_display_t::~egl_display_t() {
81 egl_display_t* egl_display_t::get(EGLDisplay dpy) {
86 void egl_display_t::addObject(egl_object_t* object) {
91 void egl_display_t::removeObject(egl_object_t* object)
    [all...]
egl_display.h 48 class EGLAPI egl_display_t { // marked as EGLAPI for testing purposes class in namespace:android
49 static egl_display_t sDisplay[NUM_DISPLAYS];
60 egl_display_t();
61 ~egl_display_t();
87 static egl_display_t* get(EGLDisplay dpy);
142 // The owning egl_display_t's lock may be but is not required to be held
144 // class may call back up to egl_display_t directly or indirectly.
185 // An egl_display_ptr is a kind of smart pointer for egl_display_t objects.
186 // It doesn't refcount the egl_display_t, but does ensure that the underlying
191 explicit egl_display_ptr(egl_display_t* dpy): mDpy(dpy)
    [all...]
  /frameworks/native/opengl/libagl/
egl.cpp 99 struct egl_display_t struct in namespace:android
101 egl_display_t() : type(0), initialized(0) { } function in struct:android::egl_display_t
103 static egl_display_t& get_display(EGLDisplay dpy);
113 static egl_display_t gDisplays[NUM_DISPLAYS];
115 egl_display_t& egl_display_t::get_display(EGLDisplay dpy) {
    [all...]

Completed in 139 milliseconds