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

  /cts/tests/tests/media/src/android/media/cts/
InputSurface.java 42 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT;
95 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT,
98 if (mEGLContext == null) {
121 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext);
129 mEGLContext = EGL14.EGL_NO_CONTEXT;
139 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
OutputSurface.java 49 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT;
155 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT,
158 if (mEGLContext == null) {
182 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext);
194 mEGLContext = EGL14.EGL_NO_CONTEXT;
206 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 28 private EGLContext mEGLContext;
62 mEGLContext = egl.eglCreateContext(mEGLDisplay, mEGLConfig, EGL10.EGL_NO_CONTEXT, attribs);
72 egl.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext);
98 egl.eglDestroyContext(mEGLDisplay, mEGLContext);
  /cts/tests/tests/opengl/src/android/opengl/cts/
WrapperTest.java 39 private EGLContext mEGLContext;
174 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
227 * Sets mEGLDisplay, mEGLContext, and mEGLSurface, and makes them current.
273 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT,
276 if (mEGLContext == null) {
293 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
312 mEGLContext = null;
FramebufferTest.java 163 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT;
217 mEGLContext = context;
222 if (mEGLContext == EGL14.EGL_NO_CONTEXT) { // GLES 2 only, or GLES 3 attempt failed
236 mEGLContext = context;
242 EGL14.eglQueryContext(mEGLDisplay, mEGLContext, EGL14.EGL_CONTEXT_CLIENT_VERSION,
294 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext);
300 mEGLContext = EGL14.EGL_NO_CONTEXT;
377 if (!EGL14.eglMakeCurrent(mEGLDisplay, eglSurface, eglSurface, mEGLContext)) {
390 if (!EGL14.eglMakeCurrent(mEGLDisplay, drawSurface, readSurface, mEGLContext)) {
425 return mEGLContext.equals(EGL14.eglGetCurrentContext()) &
    [all...]

Completed in 53 milliseconds