Home
last modified time | relevance | path

Searched refs:eglConfig (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/opengl/src/android/opengl/cts/
DGlTestBase.java77 EGLConfig eglConfig = Egl14Utils.getEglConfig(sEglDisplay, 2); in createContext() local
80 mEglContext = Egl14Utils.createEglContext(sEglDisplay, eglConfig, 2); in createContext()
81 assertNotSame(EGL_NO_CONTEXT, eglConfig); in createContext()
83 mEglSurface = eglCreatePbufferSurface(sEglDisplay, eglConfig, new int[] { in createContext()
DEgl14Utils.java86 static EGLContext createEglContext(EGLDisplay eglDisplay, EGLConfig eglConfig, int version) { in createEglContext() argument
88 return EGL14.eglCreateContext(eglDisplay, eglConfig, in createEglContext()
/cts/hostsidetests/angle/app/common/src/com/android/angleIntegrationTest/common/
DGlesView.java44 private EGLConfig eglConfig; field in GlesView
94 eglConfig = selectedConfig[0]; in createEGL()
105 EGLSurface surface = EGL.eglCreateWindowSurface(display, eglConfig, this, null); in surfaceCreated()
108 .eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, contextAttribs); in surfaceCreated()
/cts/tests/tests/media/src/android/media/cts/
DNdkInputSurface.java35 static private native long eglCreateContext(long eglDisplay, long eglConfig); in eglCreateContext() argument
36 static private native long createEGLSurface(long eglDisplay, long eglConfig, long nativeWindow); in createEGLSurface() argument
/cts/hostsidetests/sustainedperf/shadertoy_android/src/
DGLtestView.java112 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { in createContext() argument
116 … EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); in createContext()
/cts/tests/tests/view/src/android/view/cts/
DTextureViewCtsActivity.java419 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) { in createContext() argument
421 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); in createContext()
/cts/tests/tests/media/libmediandkjni/
Dnative-media-jni.cpp1347 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglConfig) { in Java_android_media_cts_NdkInputSurface_eglCreateContext() argument
1357 reinterpret_cast<EGLConfig>(eglConfig), in Java_android_media_cts_NdkInputSurface_eglCreateContext()
1370 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglConfig, jlong nativeWindow) { in Java_android_media_cts_NdkInputSurface_createEGLSurface() argument
1375 reinterpret_cast<EGLConfig>(eglConfig), in Java_android_media_cts_NdkInputSurface_createEGLSurface()
/cts/tests/tests/openglperf/src/android/openglperf/cts/
DGLSurfaceViewCustom.java770 EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig); in createContext() argument