Searched defs:eglDisplay (Results 1 – 6 of 6) sorted by relevance
34 static private native long eglChooseConfig(long eglDisplay); in eglChooseConfig()35 static private native long eglCreateContext(long eglDisplay, long eglConfig); in eglCreateContext()36 static private native long createEGLSurface(long eglDisplay, long eglConfig, long nativeWindow); in createEGLSurface()37 static private native boolean eglMakeCurrent(long eglDisplay, long eglSurface, long eglContext); in eglMakeCurrent()38 static private native boolean eglSwapBuffers(long eglDisplay, long eglSurface); in eglSwapBuffers()39 …static private native boolean eglPresentationTimeANDROID(long eglDisplay, long eglSurface, long ns… in eglPresentationTimeANDROID()40 static private native int eglGetWidth(long eglDisplay, long eglSurface); in eglGetWidth()41 static private native int eglGetHeight(long eglDisplay, long eglSurface); in eglGetHeight()42 static private native boolean eglDestroySurface(long eglDisplay, long eglSurface); in eglDestroySurface()43 …static private native void nativeRelease(long eglDisplay, long eglSurface, long eglContext, long n… in nativeRelease()
1025 private EGLDisplay eglDisplay = null; field in GLSurfaceViewFactory.GLSurfaceViewThread
71 EGLDisplay eglDisplay = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY); in createEglDisplay() local88 static EGLContext createEglContext(EGLDisplay eglDisplay) { in createEglContext()95 static EGLContext createEglContext(EGLDisplay eglDisplay, EGLConfig eglConfig, int version) { in createEglContext()104 static void destroyEglContext(EGLDisplay eglDisplay, EGLContext eglContext) { in destroyEglContext()121 static void releaseAndTerminate(EGLDisplay eglDisplay) { in releaseAndTerminate()136 static EGLConfig getEglConfig(EGLDisplay eglDisplay, int version) { in getEglConfig()187 EGLDisplay eglDisplay = createEglDisplay(); in retrieveCapableTextureSize() local
40 EGLDisplay eglDisplay = null; in testCreateAndReleaseContext() local
1328 EGLDisplay eglDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY); in Java_android_media_cts_NdkInputSurface_eglGetDisplay() local1343 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay) { in Java_android_media_cts_NdkInputSurface_eglChooseConfig()1366 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglConfig) { in Java_android_media_cts_NdkInputSurface_eglCreateContext()1389 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglConfig, jlong nativeWindow) { in Java_android_media_cts_NdkInputSurface_createEGLSurface()1407 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface, jlong eglContext) { in Java_android_media_cts_NdkInputSurface_eglMakeCurrent()1418 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface) { in Java_android_media_cts_NdkInputSurface_eglSwapBuffers()1427 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface, jlong nsecs) { in Java_android_media_cts_NdkInputSurface_eglPresentationTimeANDROID()1437 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface) { in Java_android_media_cts_NdkInputSurface_eglGetWidth()1451 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface) { in Java_android_media_cts_NdkInputSurface_eglGetHeight()1465 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface) { in Java_android_media_cts_NdkInputSurface_eglDestroySurface()[all …]
419 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) { in createContext()