HomeSort by relevance Sort by last modified time
    Searched refs:mEglContext (Results 1 - 18 of 18) sorted by null

  /frameworks/av/cmds/screenrecord/
EglWindow.h 36 mEglContext(EGL_NO_CONTEXT),
76 EGLContext mEglContext;
EglWindow.cpp 92 if (!eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
148 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT,
150 if (mEglContext == EGL_NO_CONTEXT) {
164 if (mEglContext != EGL_NO_CONTEXT) {
165 eglDestroyContext(mEglDisplay, mEglContext);
174 mEglContext = EGL_NO_CONTEXT;
  /cts/tests/tests/graphics/src/android/graphics/cts/
ASurfaceTextureTest.java 49 private EGLContext mEglContext = EGL_NO_CONTEXT;
84 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT,
86 if (mEglContext == EGL_NO_CONTEXT) {
90 if (!EGL14.eglMakeCurrent(mEglDisplay, mEglPbuffer, mEglPbuffer, mEglContext)) {
EGL14Test.java 47 private EGLContext mEglContext = EGL14.EGL_NO_CONTEXT;
105 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig, EGL14.EGL_NO_CONTEXT,
107 if (mEglContext == EGL14.EGL_NO_CONTEXT) {
116 if (!EGL14.eglMakeCurrent(mEglDisplay, mEglPbuffer, mEglPbuffer, mEglContext)) {
144 if (!EGL14.eglDestroyContext(mEglDisplay, mEglContext)) {
EGL15Test.java 55 private EGLContext mEglContext = EGL15.EGL_NO_CONTEXT;
117 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig, EGL14.EGL_NO_CONTEXT,
119 if (mEglContext == EGL15.EGL_NO_CONTEXT) {
128 if (!EGL14.eglMakeCurrent(mEglDisplay, mEglPbuffer, mEglPbuffer, mEglContext)) {
286 EGLImage image = EGL15.eglCreateImage(mEglDisplay, mEglContext,
ANativeWindowTest.java 54 private EGLContext mEglContext = EGL_NO_CONTEXT;
89 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT,
91 if (mEglContext == EGL_NO_CONTEXT) {
95 if (!EGL14.eglMakeCurrent(mEglDisplay, mEglPbuffer, mEglPbuffer, mEglContext)) {
  /cts/tests/tests/opengl/src/android/opengl/cts/
GlTestBase.java 57 private EGLContext mEglContext;
80 mEglContext = Egl14Utils.createEglContext(sEglDisplay, eglConfig, 2);
90 eglMakeCurrent(sEglDisplay, mEglSurface, mEglSurface, mEglContext);
98 Egl14Utils.destroyEglContext(sEglDisplay, mEglContext);
  /cts/tests/openglperf2/jni/graphics/
Renderer.cpp 92 mEglContext(EGL_NO_CONTEXT), mWindow(window) {
111 mEglContext = eglCreateContext(mEglDisplay, mGlConfig, EGL_NO_CONTEXT, contextAttribs);
112 EGL_RESULT_CHECK(mEglContext != EGL_NO_CONTEXT);
114 EGL_RESULT_CHECK(eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext));
125 if (mEglContext != EGL_NO_CONTEXT) {
126 eglDestroyContext(mEglDisplay, mEglContext);
127 mEglContext = EGL_NO_CONTEXT;
143 EGL_RESULT_CHECK(eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext));
229 EGL_RESULT_CHECK(eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext));
Renderer.h 38 EGLContext mEglContext;
  /cts/tests/tests/view/src/android/view/cts/
GLProducerThread.java 42 private EGLContext mEglContext = EGL10.EGL_NO_CONTEXT;
110 mEglContext = mEgl.eglCreateContext(mEglDisplay,
126 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
135 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
137 mEglContext = EGL10.EGL_NO_CONTEXT;
TextureViewCtsActivity.java 78 private EGLContext mEglContext;
292 if (mEglContext != null) {
293 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
294 mEglContext = null;
398 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
410 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
  /external/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
SkottieRunner.java 44 private EGLContext mEglContext;
179 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
194 if (!mEgl.eglMakeCurrent(mEglDisplay, mPBufferSurface, mPBufferSurface, mEglContext)) {
238 if (mEglContext != null) {
239 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
240 mEglContext = null;
345 mEglContext);
415 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
448 mEglContext);
  /external/skqp/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
SkottieRunner.java 44 private EGLContext mEglContext;
179 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
194 if (!mEgl.eglMakeCurrent(mEglDisplay, mPBufferSurface, mPBufferSurface, mEglContext)) {
238 if (mEglContext != null) {
239 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
240 mEglContext = null;
345 mEglContext);
415 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
448 mEglContext);
  /device/generic/goldfish/camera/
EmulatedFakeRotatingCameraDevice.h 99 EGLContext mEglContext;
EmulatedFakeRotatingCameraDevice.cpp 277 eglDestroyContext( mEglDisplay, mEglContext );
384 if ( (mEglContext = eglCreateContext(mEglDisplay, myConfig, 0, 0)) == EGL_NO_CONTEXT )
390 if ( eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext) != EGL_TRUE )
  /cts/tests/openglperf2/jni/primitive/contextswitch/
ContextSwitchRenderer.cpp 109 mContexts[i] = eglCreateContext(mEglDisplay, mGlConfig, mEglContext, contextAttribs);
155 eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext);
230 eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext);
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java     [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java     [all...]

Completed in 671 milliseconds