/frameworks/native/opengl/libs/EGL/ |
egl_object.h | 148 class egl_context_t: public egl_object_t { class in namespace:android 150 ~egl_context_t() {} 152 typedef egl_object_t::LocalRef<egl_context_t, EGLContext> Ref; 154 egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, 174 typedef egl_context_t::Ref ContextRef; 189 egl_context_t* get_context(EGLContext context) { 190 return egl_to_native_cast<egl_context_t>(context);
|
egl_object.cpp | 104 egl_context_t::egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, function in class:android::egl_context_t 110 void egl_context_t::onLooseCurrent() { 115 void egl_context_t::onMakeCurrent(EGLSurface draw, EGLSurface read) {
|
egl_display.h | 41 class egl_context_t; 49 void loseCurrentImpl(egl_context_t * cur_c); 88 EGLBoolean makeCurrent(egl_context_t* c, egl_context_t* cur_c, 91 static void loseCurrent(egl_context_t * cur_c);
|
egl.cpp | 129 egl_context_t const * const c = get_context(context); 147 egl_context_t const * const c = get_context(context); 170 egl_context_t const * const c = get_context(context);
|
egl_display.cpp | 294 void egl_display_t::loseCurrent(egl_context_t * cur_c) 304 void egl_display_t::loseCurrentImpl(egl_context_t * cur_c) 326 EGLBoolean egl_display_t::makeCurrent(egl_context_t* c, egl_context_t* cur_c,
|
eglApi.cpp | 673 egl_context_t* const c = get_context(share_list); 694 egl_context_t* c = new egl_context_t(dpy, context, config, cnx, 714 egl_context_t * const c = get_context(ctx); 755 egl_context_t * c = NULL; 760 egl_context_t * cur_c = get_context(getContext()); 828 egl_context_t * const c = get_context(ctx); 854 egl_context_t const * const c = get_context(ctx); 874 egl_context_t const * const c = get_context(ctx); [all...] |
/frameworks/native/opengl/libagl/ |
egl.cpp | 121 struct egl_context_t { struct in namespace:android 132 static inline egl_context_t* context(EGLContext ctx) { 134 return static_cast<egl_context_t*>(gl->rasterizer.base); [all...] |