Home
last modified time | relevance | path

Searched refs:pbufferAttributes (Results 1 – 11 of 11) sorted by relevance

/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/
DEGLSurfaceTexture.java272 int[] pbufferAttributes; in createEGLSurface() local
274 pbufferAttributes = in createEGLSurface()
285 pbufferAttributes = in createEGLSurface()
294 surface = EGL14.eglCreatePbufferSurface(display, config, pbufferAttributes, /* offset= */ 0); in createEGLSurface()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
DEGLSurfaceTexture.java276 int[] pbufferAttributes; in createEGLSurface() local
278 pbufferAttributes = in createEGLSurface()
289 pbufferAttributes = in createEGLSurface()
298 surface = EGL14.eglCreatePbufferSurface(display, config, pbufferAttributes, /* offset= */ 0); in createEGLSurface()
DGlUtil.java221 int[] pbufferAttributes = in focusPlaceholderEglSurface() local
229 eglDisplay, EGL_CONFIG_ATTRIBUTES_RGBA_8888, pbufferAttributes); in focusPlaceholderEglSurface()
243 int[] pbufferAttributes = in focusPlaceholderEglSurfaceBt2020Pq() local
255 eglDisplay, EGL_CONFIG_ATTRIBUTES_RGBA_1010102, pbufferAttributes); in focusPlaceholderEglSurfaceBt2020Pq()
550 EGLDisplay eglDisplay, int[] configAttributes, int[] pbufferAttributes) { in createEglPbufferSurface() argument
555 pbufferAttributes, in createEglPbufferSurface()
/external/angle/src/tests/test_utils/
DMultiThreadSteps.cpp34 EGLint pbufferAttributes[] = { in RunLockStepThreadsWithSize() local
44 surfaces[threadIndex] = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in RunLockStepThreadsWithSize()
/external/angle/src/tests/gl_tests/
DVulkanMultithreadingTest.cpp84 EGLint pbufferAttributes[] = { in runMultithreadedGLTest() local
87 surface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in runMultithreadedGLTest()
DMultithreadingTest.cpp84 EGLint pbufferAttributes[] = { in runMultithreadedGLTest() local
87 surface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in runMultithreadedGLTest()
288 EGLint pbufferAttributes[] = { in TEST_P() local
292 EGLSurface surface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in TEST_P()
548 EGLint pbufferAttributes[] = { in TEST_P() local
551 EGLSurface sharedSurface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in TEST_P()
599 surface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in TEST_P()
876 EGLint pbufferAttributes[] = { in textureThreadFunction() local
879 surface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in textureThreadFunction()
2143 EGLint pbufferAttributes[kThreadCount][6] = { in TEST_P() local
[all …]
DImageTest.cpp1784 EGLint pbufferAttributes[] = { in TEST_P() local
1791 EGLSurface pbuffer = eglCreatePbufferSurface(display, config, pbufferAttributes); in TEST_P()
DStateChangeTest.cpp7859 EGLint pbufferAttributes[] = {EGL_WIDTH, 1, EGL_HEIGHT, 1, EGL_NONE, EGL_NONE}; in TEST_P() local
7860 EGLSurface surface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in TEST_P()
/external/angle/src/tests/egl_tests/
DEGLContextSharingTest.cpp606 EGLint pbufferAttributes[] = {EGL_WIDTH, 1, EGL_HEIGHT, 1, EGL_NONE, EGL_NONE}; in TEST_P() local
610 surface[t] = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in TEST_P()
785 EGLint pbufferAttributes[] = {EGL_WIDTH, 1, EGL_HEIGHT, 1, EGL_NONE}; in TEST_P() local
786 EGLSurface surface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in TEST_P()
850 EGLint pbufferAttributes[] = {EGL_WIDTH, 1, EGL_HEIGHT, 1, EGL_NONE}; in TEST_P() local
851 EGLSurface surface = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in TEST_P()
1433 const EGLint pbufferAttributes[] = {EGL_WIDTH, 1, EGL_HEIGHT, 1, EGL_NONE}; in TEST_P() local
1445 surface[t] = eglCreatePbufferSurface(display, config, pbufferAttributes); in TEST_P()
DEGLMultiContextTest.cpp202 EGLint pbufferAttributes[] = {EGL_WIDTH, 1, EGL_HEIGHT, 1, EGL_NONE, EGL_NONE}; in TEST_P() local
206 surface[t] = eglCreatePbufferSurface(dpy, config, pbufferAttributes); in TEST_P()
DEGLSurfaceTest.cpp208 std::vector<EGLint> pbufferAttributes = additionalAttributes; in initializeSurfaceWithAttribs() local
211 pbufferAttributes.push_back(EGL_WIDTH); in initializeSurfaceWithAttribs()
212 pbufferAttributes.push_back(64); in initializeSurfaceWithAttribs()
213 pbufferAttributes.push_back(EGL_HEIGHT); in initializeSurfaceWithAttribs()
214 pbufferAttributes.push_back(64); in initializeSurfaceWithAttribs()
215 pbufferAttributes.push_back(EGL_NONE); in initializeSurfaceWithAttribs()
217 mPbufferSurface = eglCreatePbufferSurface(mDisplay, mConfig, pbufferAttributes.data()); in initializeSurfaceWithAttribs()