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

  /frameworks/base/libs/gui/tests/
SurfaceTextureClient_test.cpp 29 mEglContext(EGL_NO_CONTEXT) {
62 mEglContext = eglCreateContext(mEglDisplay, myConfig, EGL_NO_CONTEXT, 0);
64 ASSERT_NE(EGL_NO_CONTEXT, mEglContext);
66 EXPECT_TRUE(eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext));
76 eglDestroyContext(mEglDisplay, mEglContext);
96 EGLContext mEglContext;
616 mEglContext(EGL_NO_CONTEXT) {
645 mEglContext = eglCreateContext(mEglDisplay, myConfig, EGL_NO_CONTEXT,
648 ASSERT_NE(EGL_NO_CONTEXT, mEglContext);
670 if (mEglContext != EGL_NO_CONTEXT)
    [all...]
SurfaceTexture_test.cpp 46 mEglContext(EGL_NO_CONTEXT) {
108 mEglContext = eglCreateContext(mEglDisplay, mGlConfig, EGL_NO_CONTEXT,
111 ASSERT_NE(EGL_NO_CONTEXT, mEglContext);
114 mEglContext));
139 if (mEglContext != EGL_NO_CONTEXT) {
140 eglDestroyContext(mEglDisplay, mEglContext);
329 EGLContext mEglContext;
    [all...]
  /frameworks/media/libvideoeditor/lvpp/
NativeWindowRenderer.h 90 EGLContext mEglContext;
  /frameworks/base/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 57 mEglContext(EGL_NO_CONTEXT) {
121 mEglContext = eglCreateContext(mEglDisplay, mGlConfig, EGL_NO_CONTEXT,
124 ASSERT_NE(EGL_NO_CONTEXT, mEglContext);
127 mEglContext));
152 if (mEglContext != EGL_NO_CONTEXT) {
153 eglDestroyContext(mEglDisplay, mEglContext);
341 EGLContext mEglContext;
494 mEglContext));
788 mEglContext));
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 117 private EGLContext mEglContext;
553 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
576 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
590 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
595 mGL = mEglContext.getGL();
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GLTextureViewActivity.java 144 private EGLContext mEglContext;
345 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
350 if (!mEglContext.equals(mEgl.eglGetCurrentContext()) ||
352 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
379 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
393 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
398 mGL = mEglContext.getGL();
  /packages/apps/Nfc/src/com/android/nfc/
FireflyRenderThread.java 49 EGLContext mEglContext;
275 mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null);
285 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
291 mGL = (GL10) mEglContext.getGL();
304 if (mEglContext != null) {
305 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
313 if (!mEglContext.equals(mEgl.eglGetCurrentContext()) ||
315 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 424 EGLContext mEglContext;
575 mEglContext = managedContext != null ? managedContext.getContext() : null;
578 if (mEglContext == null) {
579 mEglContext = createContext(sEgl, sEglDisplay, sEglConfig);
580 sEglContextStorage.set(new Gl20Renderer.Gl20RendererEglContext(mEglContext));
671 if (!sEgl.eglMakeCurrent(sEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
694 return mEglContext.getGL();
899 if (!mEglContext.equals(sEgl.eglGetCurrentContext()) ||
901 if (!sEgl.eglMakeCurrent(sEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java     [all...]

Completed in 1373 milliseconds