Searched defs:attrib_list (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java47 public boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, argument
51 arg("attrib_list", attrib_list);
55 boolean result = mEgl10.eglChooseConfig(display, attrib_list, configs,
79 EGLContext share_context, int[] attrib_list) {
84 arg("attrib_list", attrib_list);
88 share_context, attrib_list);
95 EGLConfig config, int[] attrib_list) {
99 arg("attrib_list", attrib_lis
78 eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) argument
94 eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) argument
109 eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) argument
125 eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) argument
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java36 public native boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config); argument
53 public EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) { argument
54 int eglContextId = _eglCreateContext(display, config, share_context, attrib_list);
61 public EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) { argument
62 int eglSurfaceId = _eglCreatePbufferSurface(display, config, attrib_list);
69 public EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) { argument
71 _eglCreatePixmapSurface(sur, display, config, native_pixmap, attrib_list);
78 public EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) { argument
90 eglSurfaceId = _eglCreateWindowSurface(display, config, sur, attrib_list);
93 native_window, attrib_list);
147 _eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) argument
148 _eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) argument
149 _eglCreatePixmapSurface(EGLSurface sur, EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) argument
150 _eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) argument
151 _eglCreateWindowSurfaceTexture(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) argument
[all...]
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp90 static bool validAttribList(JNIEnv *_env, jintArray attrib_list) { argument
91 if (attrib_list == NULL) {
94 jsize len = _env->GetArrayLength(attrib_list);
99 _env->GetIntArrayRegion(attrib_list, len-1, 1, &item);
103 static jint* beginNativeAttribList(JNIEnv *_env, jintArray attrib_list) { argument
104 if (attrib_list != NULL) {
105 return (jint *)_env->GetPrimitiveArrayCritical(attrib_list, (jboolean *)0);
111 static void endNativeAttributeList(JNIEnv *_env, jintArray attrib_list, jint* attrib_base) { argument
112 if (attrib_list != NULL) {
113 _env->ReleasePrimitiveArrayCritical(attrib_list, attrib_bas
189 jni_eglChooseConfig(JNIEnv *_env, jobject _this, jobject display, jintArray attrib_list, jobjectArray configs, jint config_size, jintArray num_config) argument
224 jni_eglCreateContext(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject share_context, jintArray attrib_list) argument
240 jni_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject display, jobject config, jintArray attrib_list) argument
266 jni_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject out_sur, jobject display, jobject config, jobject native_pixmap, jintArray attrib_list) argument
312 jni_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject native_window, jintArray attrib_list) argument
339 jni_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject native_window, jintArray attrib_list) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/egl/
H A DEGL10.java97 boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config); argument
99 EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list); argument
100 EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list); argument
101 EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list); argument
102 EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list); argument
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp189 EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list, argument
208 dp->disp.dpy, attrib_list, configs, config_size, num_config);
232 const EGLint *attrib_list)
268 iDpy, config, window, attrib_list);
284 const EGLint *attrib_list)
292 dp->disp.dpy, config, pixmap, attrib_list);
303 const EGLint *attrib_list)
311 dp->disp.dpy, config, attrib_list);
383 EGLContext share_list, const EGLint *attrib_list)
395 dp->disp.dpy, config, share_list, attrib_list);
230 eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list) argument
282 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list) argument
302 eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
382 eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list) argument
1026 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list) argument
1046 eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list) argument
1084 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) argument
1125 eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list) argument
[all...]
/frameworks/native/opengl/libagl/
H A Degl.cpp1220 NativeWindowType window, const EGLint *attrib_list)
1269 NativePixmapType pixmap, const EGLint *attrib_list)
1315 const EGLint *attrib_list)
1339 while (attrib_list[0]) {
1340 if (attrib_list[0] == EGL_WIDTH) w = attrib_list[1];
1341 if (attrib_list[0] == EGL_HEIGHT) h = attrib_list[1];
1342 attrib_list+=2;
1447 EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list, argument
1219 createWindowSurface(EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list) argument
1268 createPixmapSurface(EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list) argument
1314 createPbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
1542 eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list) argument
1549 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list) argument
1556 eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
1646 eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list) argument
1973 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list) argument
1998 eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list) argument
2011 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) argument
2074 eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list) argument
[all...]

Completed in 1373 milliseconds