/frameworks/native/opengl/tools/glgen/stubs/egl/ |
H A D | eglQueryString.java | 1 // C function const char * eglQueryString ( EGLDisplay dpy, EGLint name ) 4 EGLDisplay dpy, 3 eglQueryString( EGLDisplay dpy, int name ) argument
|
H A D | eglCreatePixmapSurface.java | 1 // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list ) 5 EGLDisplay dpy, 4 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, int pixmap, int[] attrib_list, int offset ) argument
|
H A D | eglCreatePbufferFromClientBuffer.java | 1 // C function EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list ) 4 EGLDisplay dpy, 16 EGLDisplay dpy, 3 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, int buftype, int buffer, EGLConfig config, int[] attrib_list, int offset ) argument 15 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, int buftype, long buffer, EGLConfig config, int[] attrib_list, int offset ) argument
|
H A D | eglCreateWindowSurface.java | 1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) 4 EGLDisplay dpy, 12 EGLDisplay dpy, 19 public static EGLSurface eglCreateWindowSurface(EGLDisplay dpy, argument 38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset); 40 surface = _eglCreateWindowSurfaceTexture(dpy, config, 3 _eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument 11 _eglCreateWindowSurfaceTexture( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
|
H A D | eglQueryString.cpp | 1 /* const char * eglQueryString ( EGLDisplay dpy, EGLint name ) */ 4 (JNIEnv *_env, jobject _this, jobject dpy, jint name) { 6 (EGLDisplay)fromEGLHandle(_env, egldisplayGetHandleID, dpy), 3 android_eglQueryString__Landroind_opengl_EGLDisplay_2I(JNIEnv *_env, jobject _this, jobject dpy, jint name) argument
|
H A D | eglCreatePixmapSurface.cpp | 1 /* EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list ) */ 4 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint pixmap, jintArray attrib_list_ref, jint offset) { 3 android_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint pixmap, jintArray attrib_list_ref, jint offset) argument
|
H A D | eglCreatePbufferFromClientBuffer.cpp | 1 /* EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list ) */ 4 (JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jlong buffer, jobject config, jintArray attrib_list_ref, jint offset) { 9 EGLDisplay dpy_native = (EGLDisplay) fromEGLHandle(_env, egldisplayGetHandleID, dpy); 63 (JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) { 68 return android_eglCreatePbufferFromClientBuffer(_env, _this, dpy, buftype, buffer, config, attrib_list_ref, offset); 3 android_eglCreatePbufferFromClientBuffer(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jlong buffer, jobject config, jintArray attrib_list_ref, jint offset) argument 62 android_eglCreatePbufferFromClientBufferInt(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
|
H A D | eglCreateWindowSurface.cpp | 1 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */ 4 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) { 9 EGLDisplay dpy_native = (EGLDisplay) fromEGLHandle(_env, egldisplayGetHandleID, dpy); 74 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */ 77 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) { 82 EGLDisplay dpy_native = (EGLDisplay) fromEGLHandle(_env, egldisplayGetHandleID, dpy); 3 android_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument 76 android_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
H A D | EGLDisplayImpl.java | 24 public EGLDisplayImpl(long dpy) { argument 25 mEGLDisplay = dpy;
|
/frameworks/native/opengl/tests/configdump/ |
H A D | configdump.cpp | 73 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); local 74 eglInitialize(dpy, 0, 0); 75 eglGetConfigs(dpy, NULL, 0, &n); 77 eglGetConfigs(dpy, configs, n, &n); 83 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value); 89 eglTerminate(dpy);
|
/frameworks/base/opengl/java/android/opengl/ |
H A D | EGLExt.java | 38 // C function EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time ) 41 EGLDisplay dpy, 40 eglPresentationTimeANDROID( EGLDisplay dpy, EGLSurface sur, long time ) argument
|
/frameworks/native/libs/gui/ |
H A D | SyncFeatures.cpp | 30 extern "C" EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name); 40 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); local 43 const char* exts = eglQueryStringImplementationANDROID(dpy, EGL_EXTENSIONS);
|
/frameworks/native/opengl/tests/finish/ |
H A D | finish.cpp | 47 EGLDisplay dpy; local 52 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); 53 eglInitialize(dpy, &majorVersion, &minorVersion); 56 dpy, configAttribs, window, &config); 62 surface = eglCreateWindowSurface(dpy, config, window, NULL); 63 context = eglCreateContext(dpy, config, NULL, NULL); 64 eglMakeCurrent(dpy, surface, surface, context); 65 eglQuerySurface(dpy, surface, EGL_WIDTH, &w); 66 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h); 114 eglSwapBuffers(dpy, surfac [all...] |
/frameworks/native/opengl/tests/lib/ |
H A D | glTestLib.cpp | 68 void glTestPrintEGLConfiguration(EGLDisplay dpy, EGLConfig config) argument 110 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
|
/frameworks/native/opengl/tests/textures/ |
H A D | textures.cpp | 43 EGLDisplay dpy; local 48 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); 49 eglInitialize(dpy, &majorVersion, &minorVersion); 52 dpy, configAttribs, window, &config); 58 surface = eglCreateWindowSurface(dpy, config, window, NULL); 59 context = eglCreateContext(dpy, config, NULL, NULL); 60 eglMakeCurrent(dpy, surface, surface, context); 61 eglQuerySurface(dpy, surface, EGL_WIDTH, &w); 62 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h); 117 eglSwapBuffers(dpy, surfac [all...] |
/frameworks/native/opengl/tests/filter/ |
H A D | filter.cpp | 40 EGLDisplay dpy; local 49 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); 50 eglInitialize(dpy, &majorVersion, &minorVersion); 53 dpy, s_configAttribs, window, &config); 54 surface = eglCreateWindowSurface(dpy, config, window, NULL); 57 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs); 59 surface = eglCreatePbufferSurface(dpy, config, attribs); 64 context = eglCreateContext(dpy, config, NULL, NULL); 65 eglMakeCurrent(dpy, surface, surface, context); 66 eglQuerySurface(dpy, surfac [all...] |
/frameworks/native/opengl/tests/gl_perf/ |
H A D | gl2_perf.cpp | 56 static EGLDisplay dpy; variable 75 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); 77 if (dpy == EGL_NO_DISPLAY) { 82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion); 91 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig); 99 surface = eglCreateWindowSurface(dpy, myConfig, window, NULL); 106 context = eglCreateContext(dpy, myConfig, EGL_NO_CONTEXT, context_attribs); 112 returnValue = eglMakeCurrent(dpy, surface, surface, context); 117 eglQuerySurface(dpy, surface, EGL_WIDTH, &w); 119 eglQuerySurface(dpy, surfac [all...] |
/frameworks/native/opengl/tests/linetex/ |
H A D | linetex.cpp | 45 EGLDisplay dpy; local 50 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); 51 eglInitialize(dpy, &majorVersion, &minorVersion); 54 dpy, configAttribs, window, &config); 60 surface = eglCreateWindowSurface(dpy, config, window, NULL); 61 context = eglCreateContext(dpy, config, NULL, NULL); 62 eglMakeCurrent(dpy, surface, surface, context); 63 eglQuerySurface(dpy, surface, EGL_WIDTH, &w); 64 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h); 110 eglSwapBuffers(dpy, surfac [all...] |
/frameworks/native/opengl/tests/EGLTest/ |
H A D | EGL_test.cpp | 31 bool hasEglExtension(EGLDisplay dpy, const char* extensionName) { argument 32 const char* exts = eglQueryString(dpy, EGL_EXTENSIONS);
|
/frameworks/native/opengl/tests/fillrate/ |
H A D | fillrate.cpp | 46 EGLDisplay dpy; local 51 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); 52 eglInitialize(dpy, &majorVersion, &minorVersion); 55 dpy, configAttribs, window, &config); 61 surface = eglCreateWindowSurface(dpy, config, window, NULL); 62 context = eglCreateContext(dpy, config, NULL, NULL); 63 eglMakeCurrent(dpy, surface, surface, context); 64 eglQuerySurface(dpy, surface, EGL_WIDTH, &w); 65 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h); 122 eglSwapInterval(dpy, [all...] |
/frameworks/native/opengl/tests/swapinterval/ |
H A D | swapinterval.cpp | 45 EGLDisplay dpy; local 51 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); 52 eglInitialize(dpy, &majorVersion, &minorVersion); 53 eglGetConfigs(dpy, NULL, 0, &numConfigs); 57 dpy, configAttribs, window, &config); 60 eglTerminate(dpy); 65 eglGetConfigAttrib(dpy, config, EGL_RED_SIZE, &r); 66 eglGetConfigAttrib(dpy, config, EGL_GREEN_SIZE, &g); 67 eglGetConfigAttrib(dpy, config, EGL_BLUE_SIZE, &b); 68 eglGetConfigAttrib(dpy, confi [all...] |
/frameworks/rs/driver/ |
H A D | rsdGL.cpp | 82 static void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument 123 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
|
/frameworks/native/opengl/libs/EGL/ |
H A D | egl_object.cpp | 58 egl_surface_t::egl_surface_t(egl_display_t* dpy, EGLConfig config, EGLNativeWindowType win, argument 60 : egl_object_t(dpy), 96 egl_context_t::egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, argument 98 egl_object_t(get_display_nowake(dpy)), dpy(dpy), context(context),
|
/frameworks/native/opengl/tests/angeles/ |
H A D | app-linux.cpp | 136 EGLDisplay dpy; local 140 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); 141 eglInitialize(dpy, &majorVersion, &minorVersion); 144 dpy, configAttribs, window, &config); 150 surface = eglCreateWindowSurface(dpy, config, window, NULL); 155 context = eglCreateContext(dpy, config, NULL, NULL); 159 eglMakeCurrent(dpy, surface, surface, context); 162 eglQuerySurface(dpy, surface, EGL_WIDTH, &sWindowWidth); 163 eglQuerySurface(dpy, surface, EGL_HEIGHT, &sWindowHeight); 165 sEglDisplay = dpy; [all...] |
/frameworks/base/core/jni/ |
H A D | android_opengl_EGLExt.cpp | 134 /* EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time ) */ 137 (JNIEnv *_env, jobject _this, jobject dpy, jobject sur, jlong time) { 139 EGLDisplay dpy_native = (EGLDisplay) fromEGLHandle(_env, egldisplayGetHandleID, dpy); 136 android_eglPresentationTimeANDROID(JNIEnv *_env, jobject _this, jobject dpy, jobject sur, jlong time) argument
|