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

12

  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java     [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java     [all...]
  /frameworks/native/libs/gui/
GLConsumer.cpp 145 mEglContext(EGL_NO_CONTEXT),
172 mEglContext(EGL_NO_CONTEXT),
516 // if this is the first time we're called, mEglDisplay/mEglContext have
521 if (mEglContext == EGL_NO_CONTEXT) {
522 mEglContext = ctx;
531 if (mEglContext != ctx || ctx == EGL_NO_CONTEXT) {
537 mEglContext = ctx;
577 if (mEglContext != ctx && mEglContext != EGL_NO_CONTEXT) {
592 mEglContext = EGL_NO_CONTEXT
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp 40 mEglContext(EGL_NO_CONTEXT) {
83 mEglContext = eglCreateContext(mEglDisplay, myConfig, EGL_NO_CONTEXT, 0);
85 ASSERT_NE(EGL_NO_CONTEXT, mEglContext);
87 EXPECT_TRUE(eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext));
97 eglDestroyContext(mEglDisplay, mEglContext);
122 EGLContext mEglContext;
190 EGLBoolean success = eglMakeCurrent(mEglDisplay, eglSurface, eglSurface, mEglContext);
204 success = eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext);
705 mEglContext(EGL_NO_CONTEXT) {
734 mEglContext = eglCreateContext(mEglDisplay, myConfig, EGL_NO_CONTEXT
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java     [all...]
  /frameworks/av/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 59 mEglContext(EGL_NO_CONTEXT) {
123 mEglContext = eglCreateContext(mEglDisplay, mGlConfig, EGL_NO_CONTEXT,
126 ASSERT_NE(EGL_NO_CONTEXT, mEglContext);
129 mEglContext));
154 if (mEglContext != EGL_NO_CONTEXT) {
155 eglDestroyContext(mEglDisplay, mEglContext);
343 EGLContext mEglContext;
499 mEglContext));
801 mEglContext));
    [all...]
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test_surfacetexture.h 69 mEglContext(EGL_NO_CONTEXT) {
90 EGLContext mEglContext;
camera_test_surfacetexture.cpp 356 mEglContext = eglCreateContext(mEglDisplay, mGlConfig, EGL_NO_CONTEXT,
359 ASSERT(EGL_NO_CONTEXT != mEglContext);
362 mEglContext));
380 if (mEglContext != EGL_NO_CONTEXT) {
381 eglDestroyContext(mEglDisplay, mEglContext);
  /frameworks/base/services/core/java/com/android/server/display/
ColorFade.java 89 private EGLContext mEglContext;
532 if (mEglContext == null) {
537 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig,
539 if (mEglContext == null) {
647 if (!EGL14.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 126 private EGLContext mEglContext;
681 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
705 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
706 if (mEglContext == EGL_NO_CONTEXT) {
717 mEgl.eglMakeCurrent(mEglDisplay, tmpSurface, tmpSurface, mEglContext);
727 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
747 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
  /frameworks/native/include/gui/
GLConsumer.h 271 // to mEglDisplay and mEglContext. If the fields have been previously
445 // mEglContext is the OpenGL ES context with which this GLConsumer is
449 EGLContext mEglContext;

Completed in 952 milliseconds

12