HomeSort by relevance Sort by last modified time
    Searched defs:mEGLContext (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLContextImpl.java 24 long mEGLContext;
27 mEGLContext = ctx;
43 return mEGLContext == that.mEGLContext;
53 result = 31 * result + (int) (mEGLContext ^ (mEGLContext >>> 32));
  /frameworks/native/services/surfaceflinger/RenderEngine/
RenderEngine.h 169 EGLContext 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/media/src/android/media/cts/
NdkInputSurface.java 29 private long mEGLContext;
59 mEGLContext = eglCreateContext(mEGLDisplay, mEGLConfig);
60 if (mEGLContext == 0) {
76 if (!eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLContext)) {
122 nativeRelease(mEGLDisplay, mEGLSurface, mEGLContext, mNativeWindow);
125 mEGLContext = 0;
InputSurface.java 42 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT;
97 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, mConfigs[0], EGL14.EGL_NO_CONTEXT,
100 if (mEGLContext == null) {
148 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext);
156 mEGLContext = EGL14.EGL_NO_CONTEXT;
167 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/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
CtsMediaOutputSurface.java 53 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT;
159 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT,
162 if (mEGLContext == null) {
186 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext);
198 mEGLContext = EGL14.EGL_NO_CONTEXT;
210 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
  /cts/tests/tests/opengl/src/android/opengl/cts/
WrapperTest.java 39 private EGLContext mEGLContext;
174 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
232 * Sets mEGLDisplay, mEGLContext, and mEGLSurface, and makes them current.
278 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT,
281 if (mEGLContext == null) {
298 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
317 mEGLContext = null;
FramebufferTest.java 160 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT;
214 mEGLContext = context;
219 if (mEGLContext == EGL14.EGL_NO_CONTEXT) { // GLES 2 only, or GLES 3 attempt failed
233 mEGLContext = context;
239 EGL14.eglQueryContext(mEGLDisplay, mEGLContext, EGL14.EGL_CONTEXT_CLIENT_VERSION,
291 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext);
297 mEGLContext = EGL14.EGL_NO_CONTEXT;
374 if (!EGL14.eglMakeCurrent(mEGLDisplay, eglSurface, eglSurface, mEGLContext)) {
387 if (!EGL14.eglMakeCurrent(mEGLDisplay, drawSurface, readSurface, mEGLContext)) {
422 return mEGLContext.equals(EGL14.eglGetCurrentContext()) &
    [all...]
  /frameworks/support/heifwriter/src/main/java/androidx/heifwriter/
EglWindowSurface.java 43 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT;
98 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, mConfigs[0], EGL14.EGL_NO_CONTEXT,
101 if (mEGLContext == null) {
148 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext);
156 mEGLContext = EGL14.EGL_NO_CONTEXT;
166 if (!EGL14.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext)) {
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.h 177 EGLContext mEGLContext;
    [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_utils.h 488 EGLContext mEGLContext;
  /frameworks/base/core/java/android/hardware/camera2/legacy/
SurfaceTextureRenderer.java 67 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT;
449 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT,
452 if(mEGLContext == EGL14.EGL_NO_CONTEXT) {
513 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext);
520 mEGLContext = EGL14.EGL_NO_CONTEXT;
525 EGL14.eglMakeCurrent(mEGLDisplay, surface, surface, mEGLContext);
    [all...]
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_utils.h 521 EGLContext mEGLContext;
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_utils.h 596 EGLContext mEGLContext;
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-r1.jar 

Completed in 476 milliseconds

1 2