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()
1023 private EGLDisplay eglDisplay = null; field in GLSurfaceViewFactory.GLSurfaceViewThread
62 EGLDisplay eglDisplay = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY); in createEglDisplay() local79 static EGLContext createEglContext(EGLDisplay eglDisplay) { in createEglContext()86 static EGLContext createEglContext(EGLDisplay eglDisplay, EGLConfig eglConfig, int version) { in createEglContext()95 static void destroyEglContext(EGLDisplay eglDisplay, EGLContext eglContext) { in destroyEglContext()112 static void releaseAndTerminate(EGLDisplay eglDisplay) { in releaseAndTerminate()127 static EGLConfig getEglConfig(EGLDisplay eglDisplay, int version) { in getEglConfig()
40 EGLDisplay eglDisplay = null; in testCreateAndReleaseContext() local
1309 EGLDisplay eglDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY); in Java_android_media_cts_NdkInputSurface_eglGetDisplay() local1324 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay) { in Java_android_media_cts_NdkInputSurface_eglChooseConfig()1347 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong 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()1388 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface, jlong eglContext) { in Java_android_media_cts_NdkInputSurface_eglMakeCurrent()1399 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface) { in Java_android_media_cts_NdkInputSurface_eglSwapBuffers()1408 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface, jlong nsecs) { in Java_android_media_cts_NdkInputSurface_eglPresentationTimeANDROID()1418 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface) { in Java_android_media_cts_NdkInputSurface_eglGetWidth()1432 JNIEnv * /*env*/, jclass /*clazz*/, jlong eglDisplay, jlong eglSurface) { in Java_android_media_cts_NdkInputSurface_eglGetHeight()1446 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()