Searched refs:EGL14 (Results 1 – 5 of 5) sorted by relevance
/external/webrtc/sdk/android/src/java/org/webrtc/ |
D | EglBase14Impl.java | 15 import android.opengl.EGL14; 39 private EGLSurface eglSurface = EGL14.EGL_NO_SURFACE; 99 if (eglSurface != EGL14.EGL_NO_SURFACE) { in createSurfaceInternal() 102 int[] surfaceAttribs = {EGL14.EGL_NONE}; in createSurfaceInternal() 103 eglSurface = EGL14.eglCreateWindowSurface(eglDisplay, eglConfig, surface, surfaceAttribs, 0); in createSurfaceInternal() 104 if (eglSurface == EGL14.EGL_NO_SURFACE) { in createSurfaceInternal() 106 "Failed to create window surface: 0x" + Integer.toHexString(EGL14.eglGetError())); in createSurfaceInternal() 118 if (eglSurface != EGL14.EGL_NO_SURFACE) { in createPbufferSurface() 121 int[] surfaceAttribs = {EGL14.EGL_WIDTH, width, EGL14.EGL_HEIGHT, height, EGL14.EGL_NONE}; in createPbufferSurface() 122 eglSurface = EGL14.eglCreatePbufferSurface(eglDisplay, eglConfig, surfaceAttribs, 0); in createPbufferSurface() [all …]
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/util/ |
D | EGLSurfaceTexture.java | 19 import android.opengl.EGL14; 64 EGL14.EGL_RENDERABLE_TYPE, EGL14.EGL_OPENGL_ES2_BIT, 65 EGL14.EGL_RED_SIZE, 8, 66 EGL14.EGL_GREEN_SIZE, 8, 67 EGL14.EGL_BLUE_SIZE, 8, 68 EGL14.EGL_ALPHA_SIZE, 8, 69 EGL14.EGL_DEPTH_SIZE, 0, 70 EGL14.EGL_CONFIG_CAVEAT, EGL14.EGL_NONE, 71 EGL14.EGL_SURFACE_TYPE, EGL14.EGL_WINDOW_BIT, 72 EGL14.EGL_NONE [all …]
|
D | GlUtil.java | 22 import android.opengl.EGL14; 229 EGLDisplay display = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY); in isProtectedContentExtensionSupported() 230 @Nullable String eglExtensions = EGL14.eglQueryString(display, EGL10.EGL_EXTENSIONS); in isProtectedContentExtensionSupported() 241 EGLDisplay display = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY); in isSurfacelessContextExtensionSupported() 242 @Nullable String eglExtensions = EGL14.eglQueryString(display, EGL10.EGL_EXTENSIONS); in isSurfacelessContextExtensionSupported()
|
/external/exoplayer/tree/demos/gl/src/main/java/com/google/android/exoplayer2/gldemo/ |
D | VideoProcessingGLSurfaceView.java | 21 import android.opengl.EGL14; 109 EGL14.EGL_CONTEXT_CLIENT_VERSION, in VideoProcessingGLSurfaceView() 112 EGL14.EGL_TRUE, in VideoProcessingGLSurfaceView() 113 EGL14.EGL_NONE in VideoProcessingGLSurfaceView() 116 glAttributes = new int[] {EGL14.EGL_CONTEXT_CLIENT_VERSION, 2, EGL14.EGL_NONE}; in VideoProcessingGLSurfaceView() 134 ? new int[] {EGL_PROTECTED_CONTENT_EXT, EGL14.EGL_TRUE, EGL10.EGL_NONE} in VideoProcessingGLSurfaceView()
|
/external/deqp/modules/egl/ |
D | teglGetProcAddressTests.cpp | 220 EGL14, enumerator 241 case EGL14: in RenderableType() 260 case EGL14: in isApiSupported() 283 case EGL14: return FunctionNames(DE_LENGTH_OF_ARRAY(s_EGL14), s_EGL14); in getCoreFunctionNames() 309 case EGL14: in executeTest() 382 …sCase (m_eglTestCtx, "egl", "Test EGL core functions", GetProcAddressCoreFunctionsCase::EGL14)); in init()
|