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

  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLSurfaceImpl.java 22 int mEGLSurface;
25 mEGLSurface = 0;
29 mEGLSurface = surface;
40 return mEGLSurface == that.mEGLSurface;
46 return mEGLSurface;
EGLImpl.java 72 if (sur.mEGLSurface == 0) {
143 if (mSurface.mEGLSurface != value)
  /cts/tests/tests/media/src/android/media/cts/
InputSurface.java 44 private EGLSurface mEGLSurface = EGL14.EGL_NO_SURFACE;
107 mEGLSurface = EGL14.eglCreateWindowSurface(mEGLDisplay, configs[0], mSurface,
110 if (mEGLSurface == null) {
121 EGL14.eglDestroySurface(mEGLDisplay, mEGLSurface);
131 mEGLSurface = EGL14.EGL_NO_SURFACE;
140 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
156 return EGL14.eglSwapBuffers(mEGLDisplay, mEGLSurface);
171 EGL14.eglQuerySurface(mEGLDisplay, mEGLSurface, EGL14.EGL_WIDTH, value, 0);
180 EGL14.eglQuerySurface(mEGLDisplay, mEGLSurface, EGL14.EGL_HEIGHT, value, 0)
    [all...]
OutputSurface.java 50 private EGLSurface mEGLSurface = EGL14.EGL_NO_SURFACE;
165 mEGLSurface = EGL14.eglCreatePbufferSurface(mEGLDisplay, configs[0], surfaceAttribs, 0);
167 if (mEGLSurface == null) {
177 EGL14.eglDestroySurface(mEGLDisplay, mEGLSurface);
191 mEGLSurface = EGL14.EGL_NO_SURFACE;
202 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 29 private EGLSurface mEGLSurface;
66 mEGLSurface = egl.eglCreatePbufferSurface(mEGLDisplay, mEGLConfig, surfaceSize);
72 egl.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext);
97 egl.eglDestroySurface(mEGLDisplay, mEGLSurface);
  /cts/tests/tests/opengl/src/android/opengl/cts/
WrapperTest.java 40 private EGLSurface mEGLSurface;
174 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
227 * Sets mEGLDisplay, mEGLContext, and mEGLSurface, and makes them current.
286 mEGLSurface = EGL14.eglCreatePbufferSurface(mEGLDisplay, configs[0], surfaceAttribs, 0);
288 if (mEGLSurface == null) {
293 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
313 mEGLSurface = null;

Completed in 139 milliseconds