Home
last modified time | relevance | path

Searched refs:eglMakeCurrent (Results 1 – 20 of 20) sorted by relevance

/external/skia/src/gpu/gl/angle/
DSkANGLEGLContext.cpp97 eglMakeCurrent(fDisplay, fSurface, fSurface, fContext); in SkANGLEGLContext()
119 eglMakeCurrent(fDisplay, 0, 0, 0); in destroyGLContext()
137 if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) { in makeCurrent()
/external/skia/src/gpu/gl/egl/
DSkCreatePlatformGLContext_egl.cpp131 if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) { in EGLGLContext()
159 eglMakeCurrent(fDisplay, 0, 0, 0); in destroyGLContext()
178 if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) { in makeCurrent()
/external/deqp/framework/egl/wrapper/
DeglwStaticLibrary14.inl26 { "eglMakeCurrent", (deFunctionPtr)eglMakeCurrent },
DeglwStaticLibrary15.inl35 { "eglMakeCurrent", (deFunctionPtr)eglMakeCurrent },
DeglwInitCore.inl35 dst->makeCurrent = (eglMakeCurrentFunc) loader->get("eglMakeCurrent");
DeglwApi.inl45 #define eglMakeCurrent eglwMakeCurrent macro
/external/deqp/modules/egl/
DteglNegativeApiTests.cpp834 expectFalse(eglMakeCurrent(EGL_NO_DISPLAY, DE_NULL, DE_NULL, DE_NULL)); in init()
837 expectFalse(eglMakeCurrent((EGLDisplay)-1, DE_NULL, DE_NULL, DE_NULL)); in init()
868 expectFalse(eglMakeCurrent(display, (EGLSurface)-1, (EGLSurface)-1, context)); in init()
871 expectFalse(eglMakeCurrent(display, surface, (EGLSurface)-1, context)); in init()
874 expectFalse(eglMakeCurrent(display, (EGLSurface)-1, surface, context)); in init()
884 expectFalse(eglMakeCurrent(display, surface, surface, (EGLContext)-1)); in init()
894 expectFalse(eglMakeCurrent(display, surface, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in init()
897 expectFalse(eglMakeCurrent(display, EGL_NO_SURFACE, surface, EGL_NO_CONTEXT)); in init()
900 expectFalse(eglMakeCurrent(display, surface, surface, EGL_NO_CONTEXT)); in init()
954 expectTrue(eglMakeCurrent(display, surface, surface, context)); in init()
[all …]
DteglGetProcAddressTests.inl29 "eglMakeCurrent",
/external/mesa3d/src/egl/main/
Degl.def22 eglMakeCurrent
DREADME.txt48 eglMakeCurrent
Deglapi.c461 eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, in eglMakeCurrent() function
890 { "eglMakeCurrent", (_EGLProc) eglMakeCurrent }, in eglGetProcAddress()
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
Dmain.c104 if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE) { in engine_init_display()
150 eglMakeCurrent(engine->display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in engine_term_display()
/external/skia/src/views/win/
DSkOSWindow_win.cpp472 if (!eglMakeCurrent(display, surface, surface, context)) { in create_ANGLE()
502 if (eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) { in attachANGLE()
519 eglMakeCurrent(fDisplay, EGL_NO_SURFACE , EGL_NO_SURFACE , EGL_NO_CONTEXT); in detachANGLE()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java972 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, in createSurface()
991 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { in createSurface()
1032 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, in destroySurface()
/external/mesa3d/include/EGL/
Degl.h301 EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent(EGLDisplay dpy, EGLSurface draw,
/external/deqp/framework/egl/
DegluCallLogWrapperApi.inl35 eglw::EGLBoolean eglMakeCurrent (eglw::EGLDisplay dpy, eglw::EGLSurface draw, eglw::EGL…
DegluCallLogWrapper.inl306 eglw::EGLBoolean CallLogWrapper::eglMakeCurrent (eglw::EGLDisplay dpy, eglw::EGLSurface draw, eglw:… function in CallLogWrapper
309 …m_log << TestLog::Message << "eglMakeCurrent(" << dpy << ", " << toHex(draw) << ", " << toHex(read…
/external/robolectric/lib/main/
Dopengl-api-gl1.1-android-2.1_r1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/microedition/ javax/ ...
Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/ ...
/external/drm_hwcomposer/
Dglworker.cpp481 if (!eglMakeCurrent(egl_display_, EGL_NO_SURFACE, EGL_NO_SURFACE, egl_ctx_)) { in Init()