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

  /cts/tests/tests/view/src/android/view/cts/
GLProducerThread.java 40 private EGL10 mEgl;
74 mEgl = (EGL10) EGLContext.getEGL();
76 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
79 + GLUtils.getEGLErrorString(mEgl.eglGetError()));
83 if (!mEgl.eglInitialize(mEglDisplay, version)) {
85 + GLUtils.getEGLErrorString(mEgl.eglGetError()));
101 if (!mEgl.eglChooseConfig(mEglDisplay, configAttribs, configs, 1, numConfigs)
110 mEglContext = mEgl.eglCreateContext(mEglDisplay,
113 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay,
117 int error = mEgl.eglGetError()
    [all...]
TextureViewCtsActivity.java 75 private EGL10 mEgl;
238 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
261 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
289 mEgl.eglDestroySurface(mEglDisplay, mEglSurface);
293 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
297 mEgl.eglTerminate(mEglDisplay);
335 mEgl = (EGL10) EGLContext.getEGL();
337 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
340 + GLUtils.getEGLErrorString(mEgl.eglGetError()));
344 if (!mEgl.eglInitialize(mEglDisplay, version))
    [all...]
  /external/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
SkottieRunner.java 41 private EGL10 mEgl;
160 mEgl = (EGL10) EGLContext.getEGL();
162 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
165 + GLUtils.getEGLErrorString(mEgl.eglGetError()));
169 if (!mEgl.eglInitialize(mEglDisplay, version)) {
171 GLUtils.getEGLErrorString(mEgl.eglGetError()));
179 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
187 mPBufferSurface = mEgl.eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs);
189 int error = mEgl.eglGetError();
194 if (!mEgl.eglMakeCurrent(mEglDisplay, mPBufferSurface, mPBufferSurface, mEglContext))
    [all...]
  /external/skqp/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
SkottieRunner.java 41 private EGL10 mEgl;
160 mEgl = (EGL10) EGLContext.getEGL();
162 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
165 + GLUtils.getEGLErrorString(mEgl.eglGetError()));
169 if (!mEgl.eglInitialize(mEglDisplay, version)) {
171 GLUtils.getEGLErrorString(mEgl.eglGetError()));
179 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
187 mPBufferSurface = mEgl.eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs);
189 int error = mEgl.eglGetError();
194 if (!mEgl.eglMakeCurrent(mEglDisplay, mPBufferSurface, mPBufferSurface, mEglContext))
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java     [all...]
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java     [all...]

Completed in 754 milliseconds