Home
last modified time | relevance | path

Searched refs:eglGetError (Results 1 – 22 of 22) sorted by relevance

/external/skia/src/gpu/gl/egl/
DSkCreatePlatformGLContext_egl.cpp135 SkDebugf("eglChooseConfig failed. EGL Error: 0x%08x\n", eglGetError()); in EGLGLContext()
146 SkDebugf("eglCreateContext failed. EGL Error: 0x%08x\n", eglGetError()); in EGLGLContext()
158 SkDebugf("eglCreatePbufferSurface failed. EGL Error: 0x%08x\n", eglGetError()); in EGLGLContext()
164 SkDebugf("eglMakeCurrent failed. EGL Error: 0x%08x\n", eglGetError()); in EGLGLContext()
/external/skia/platform_tools/android/apps/visualbench/src/main/jni/
DSkOSWindow_AndroidNative.cpp111 SkDebugf("eglCreateWindowSurface failed. EGL Error: 0x%08x\n", eglGetError()); in attach()
116 SkDebugf("eglCreateContext failed. EGL Error: 0x%08x\n", eglGetError()); in attach()
122 SkDebugf("eglMakeCurrent failed. EGL Error: 0x%08x\n", eglGetError()); in attach()
/external/deqp/framework/egl/wrapper/
DeglwStaticLibrary14.inl23 { "eglGetError", (deFunctionPtr)eglGetError },
DeglwStaticLibrary15.inl30 { "eglGetError", (deFunctionPtr)eglGetError },
DeglwInitCore.inl30 dst->getError = (eglGetErrorFunc) loader->get("eglGetError");
DeglwApi.inl37 #define eglGetError eglwGetError macro
/external/mesa3d/src/egl/main/
Degl.def19 eglGetError
Deglapi.c850 eglGetError(void) in eglGetError() function
887 { "eglGetError", (_EGLProc) eglGetError }, in eglGetProcAddress()
/external/deqp/modules/egl/
DteglQueryConfigTests.cpp118 eglu::checkError(eglGetError(), DE_NULL, __FILE__, __LINE__); in checkGetConfigsBounds()
253 eglu::checkError(eglGetError(), DE_NULL, __FILE__, __LINE__); in iterate()
275 eglu::checkError(eglGetError(), DE_NULL, __FILE__, __LINE__); in getValue()
414 eglu::checkError(eglGetError(), DE_NULL, __FILE__, __LINE__); in executeTest()
DteglGetProcAddressTests.cpp204 eglu::checkError(eglGetError(), "eglGetProcAddress()", __FILE__, __LINE__); in executeTest()
255 eglu::checkError(eglGetError(), "eglGetProcAddress()", __FILE__, __LINE__); in executeTest()
DteglGetProcAddressTests.inl26 "eglGetError",
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/surfaceview/
DGLSurfaceView20.java168 while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { in checkEglError()
287 while (egl.eglGetError() != EGL10.EGL_SUCCESS) in printConfig()
DGLSurfaceView20API18.java153 while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { in checkEglError()
270 while (egl.eglGetError() != EGL10.EGL_SUCCESS) in printConfig()
DGLSurfaceViewAPI18.java798 EglHelper.throwEglException("eglDestroyContex", egl.eglGetError()); in destroyContext()
1099 int error = mEgl.eglGetError(); in createSurface()
1115 logEglErrorAsWarning("EGLHelper", "eglMakeCurrent", mEgl.eglGetError()); in createSurface()
1155 return mEgl.eglGetError(); in swap()
1198 throwEglException(function, mEgl.eglGetError()); in throwEglException()
DGdxEglConfigChooser.java196 egl.eglGetError(); in printConfig()
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
DViEAndroidGLES20.java105 while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { in checkEglError()
284 while (egl.eglGetError() != EGL10.EGL_SUCCESS); in printConfig()
/external/autotest/client/deps/glbench/src/
Degl_stuff.cc116 CHECK_EQ(eglGetError(), EGL_SUCCESS); in CheckError()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java1027 return mEgl.eglGetError() != EGL11.EGL_CONTEXT_LOST; in swap()
1052 throw new RuntimeException(function + " failed: " + mEgl.eglGetError()); in throwEglException()
1058 return currentContext != EGL10.EGL_NO_CONTEXT && mEgl.eglGetError() != EGL11.EGL_CONTEXT_LOST; in verifyContext()
/external/mesa3d/include/EGL/
Degl.h249 EGLAPI EGLint EGLAPIENTRY eglGetError(void);
/external/deqp/framework/egl/
DegluCallLogWrapperApi.inl37 eglw::EGLint eglGetError (void);
DegluCallLogWrapper.inl326 eglw::EGLint CallLogWrapper::eglGetError () function in CallLogWrapper
329 m_log << TestLog::Message << "eglGetError(" << ");" << TestLog::EndMessage;
/external/drm_hwcomposer/
Dglworker.cpp98 switch (eglGetError()) { in GetEGLError()