Searched refs:openGlesVersion (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/sdk/android/api/org/webrtc/ |
D | EglBase.java | 57 private int openGlesVersion = 2; field in EglBase.ConfigBuilder 66 this.openGlesVersion = version; in setOpenGlesVersion() 97 if (openGlesVersion == 2 || openGlesVersion == 3) { in createConfigAttributes() 99 list.add(openGlesVersion == 3 ? EGL_OPENGL_ES3_BIT : EGL_OPENGL_ES2_BIT); in createConfigAttributes()
|
/external/webrtc/sdk/android/src/java/org/webrtc/ |
D | EglBase14Impl.java | 76 final int openGlesVersion = EglBase.getOpenGlesVersionFromConfig(configAttributes); in EglBase14Impl() local 77 Logging.d(TAG, "Using OpenGL ES version " + openGlesVersion); in EglBase14Impl() 78 eglContext = createEglContext(sharedContext, eglDisplay, eglConfig, openGlesVersion); in EglBase14Impl() 270 EGLDisplay eglDisplay, EGLConfig eglConfig, int openGlesVersion) { in createEglContext() argument 274 int[] contextAttributes = {EGL14.EGL_CONTEXT_CLIENT_VERSION, openGlesVersion, EGL14.EGL_NONE}; in createEglContext()
|
D | EglBase10Impl.java | 68 final int openGlesVersion = EglBase.getOpenGlesVersionFromConfig(configAttributes); in EglBase10Impl() local 69 Logging.d(TAG, "Using OpenGL ES version " + openGlesVersion); in EglBase10Impl() 70 eglContext = createEglContext(sharedContext, eglDisplay, eglConfig, openGlesVersion); in EglBase10Impl() 316 EGLConfig eglConfig, int openGlesVersion) { in createEglContext() argument 320 int[] contextAttributes = {EGL_CONTEXT_CLIENT_VERSION, openGlesVersion, EGL10.EGL_NONE}; in createEglContext()
|