Home
last modified time | relevance | path

Searched refs:cur_c (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/opengl/libs/EGL/
Degl_display.cpp460 void egl_display_t::loseCurrent(egl_context_t * cur_c) in loseCurrent() argument
462 if (cur_c) { in loseCurrent()
463 egl_display_t* display = cur_c->getDisplay(); in loseCurrent()
465 display->loseCurrentImpl(cur_c); in loseCurrent()
470 void egl_display_t::loseCurrentImpl(egl_context_t * cur_c) in loseCurrentImpl() argument
474 ContextRef _cur_c(cur_c); in loseCurrentImpl()
475 SurfaceRef _cur_r(cur_c ? get_surface(cur_c->read) : nullptr); in loseCurrentImpl()
476 SurfaceRef _cur_d(cur_c ? get_surface(cur_c->draw) : nullptr); in loseCurrentImpl()
480 cur_c->onLooseCurrent(); in loseCurrentImpl()
492 EGLBoolean egl_display_t::makeCurrent(egl_context_t* c, egl_context_t* cur_c, in makeCurrent() argument
[all …]
Degl_display.h54 void loseCurrentImpl(egl_context_t * cur_c);
79 EGLBoolean makeCurrent(egl_context_t* c, egl_context_t* cur_c,
82 static void loseCurrent(egl_context_t * cur_c);
Degl_platform_entries.cpp1049 egl_context_t * cur_c = get_context(getContext()); in eglMakeCurrentImpl() local
1060 if (cur_c == nullptr) { in eglMakeCurrentImpl()
1082 EGLBoolean result = dp->makeCurrent(c, cur_c, in eglMakeCurrentImpl()