Searched refs:attrib_list (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/native/opengl/tools/glgen/specs/egl/
H A Dchecks.spec3 eglChooseConfig nullAllowed configs check configs config_size check num_config 1 sentinel attrib_list EGL_NONE
5 //STUB function: //eglCreateWindowSurface nullAllowed attrib_list sentinel attrib_list EGL_NONE
6 eglCreatePbufferSurface nullAllowed attrib_list sentinel attrib_list EGL_NONE
7 //unsupported: eglCreatePixmapSurface nullAllowed attrib_list sentinel attrib_list EGL_NONE
11 //STUB function: eglCreatePbufferFromClientBuffer nullAllowed attrib_list sentinel attrib_list EGL_NONE
12 eglCreateContext sentinel attrib_list EGL_NON
[all...]
H A DEGL14.spec7 EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config )
9 EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
10 EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list )
11 EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
18 EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list )
23 EGLContext eglCreateContext ( EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list )
/frameworks/native/opengl/tools/glgen/stubs/egl/
H A DeglCreatePbufferFromClientBuffer.java1 // C function EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list )
8 int[] attrib_list,
20 int[] attrib_list,
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 DeglCreatePixmapSurface.java1 // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
8 int[] attrib_list,
4 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, int pixmap, int[] attrib_list, int offset ) argument
H A DeglCreateWindowSurface.java1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
7 int[] attrib_list,
15 int[] attrib_list,
22 int[] attrib_list,
38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
41 win, attrib_list, offset);
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
19 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
H A DeglCreateWindowSurface.cpp1 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
14 EGLint *attrib_list = (EGLint *) 0; local
27 attrib_list = attrib_list_base + offset;
30 if (*((EGLint*)(attrib_list + i)) == EGL_NONE){
38 _exceptionMessage = "attrib_list must contain EGL_NONE!";
60 (EGLint *)attrib_list
74 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
87 EGLint *attrib_list = (EGLint *) 0; local
94 _exceptionMessage = "attrib_list == null";
123 attrib_list
[all...]
H A DeglCreatePbufferFromClientBuffer.cpp1 /* EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list ) */
14 EGLint *attrib_list = (EGLint *) 0; local
26 attrib_list = attrib_list_base + offset;
29 if (attrib_list[i] == EGL_NONE){
37 _exceptionMessage = "attrib_list must contain EGL_NONE!";
47 (EGLint *)attrib_list
/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 long eglContextId = _eglCreateContext(display, config, share_context, attrib_list);
61 public EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) { argument
62 long 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
92 eglSurfaceId = _eglCreateWindowSurface(display, config, sur, attrib_list);
95 native_window, attrib_list);
148 _eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) argument
149 _eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) argument
150 _eglCreatePixmapSurface(EGLSurface sur, EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) argument
151 _eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) argument
152 _eglCreateWindowSurfaceTexture(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DEGL14.java203 // C function EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config )
207 int[] attrib_list,
226 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
232 int[] attrib_list,
240 int[] attrib_list,
247 int[] attrib_list,
263 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
266 win, attrib_list, offset);
276 // C function EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list )
281 int[] attrib_list,
205 eglChooseConfig( EGLDisplay dpy, int[] attrib_list, int attrib_listOffset, EGLConfig[] configs, int configsOffset, int config_size, int[] num_config, int num_configOffset ) argument
228 _eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
236 _eglCreateWindowSurfaceTexture( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
244 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
278 eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config, int[] attrib_list, int offset ) argument
288 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, int pixmap, int[] attrib_list, int offset ) argument
336 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, int buftype, int buffer, EGLConfig config, int[] attrib_list, int offset ) argument
348 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, int buftype, long buffer, EGLConfig config, int[] attrib_list, int offset ) argument
391 eglCreateContext( EGLDisplay dpy, EGLConfig config, EGLContext share_context, int[] attrib_list, int offset ) argument
[all...]
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/libs/hwui/debug/
H A Dnullegl.cpp78 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, argument
88 const EGLint *attrib_list) {
93 const EGLint *attrib_list) {
123 const EGLint *attrib_list) {
159 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) { argument
163 EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list) { argument
86 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list) argument
92 eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
121 eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list) argument
/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
102 EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list); argument
103 EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list); argument
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp92 static bool validAttribList(JNIEnv *_env, jintArray attrib_list) { argument
93 if (attrib_list == NULL) {
96 jsize len = _env->GetArrayLength(attrib_list);
101 _env->GetIntArrayRegion(attrib_list, len-1, 1, &item);
105 static jint* beginNativeAttribList(JNIEnv *_env, jintArray attrib_list) { argument
106 if (attrib_list != NULL) {
107 return _env->GetIntArrayElements(attrib_list, (jboolean *)0);
113 static void endNativeAttributeList(JNIEnv *_env, jintArray attrib_list, jint* attrib_base) { argument
114 if (attrib_list != NULL) {
115 _env->ReleaseIntArrayElements(attrib_list, attrib_bas
190 jni_eglChooseConfig(JNIEnv *_env, jobject _this, jobject display, jintArray attrib_list, jobjectArray configs, jint config_size, jintArray num_config) argument
225 jni_eglCreateContext(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject share_context, jintArray attrib_list) argument
241 jni_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject display, jobject config, jintArray attrib_list) argument
256 jni_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject out_sur, jobject display, jobject config, jobject native_pixmap, jintArray attrib_list) argument
263 jni_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject native_window, jintArray attrib_list) argument
290 jni_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject display, jobject config, jobject native_window, jintArray attrib_list) argument
[all...]
H A Dandroid_opengl_EGL14.cpp343 /* EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config ) */
355 EGLint *attrib_list = (EGLint *) 0; local
365 _exceptionMessage = "attrib_list == null";
377 attrib_list = attrib_list_base + attrib_listOffset;
380 if (attrib_list[i] == EGL_NONE){
388 _exceptionMessage = "attrib_list must contain EGL_NONE!";
434 (EGLint *)attrib_list,
517 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
530 EGLint *attrib_list = (EGLint *) 0; local
543 attrib_list
603 EGLint *attrib_list = (EGLint *) 0; local
684 EGLint *attrib_list = (EGLint *) 0; local
859 EGLint *attrib_list = (EGLint *) 0; local
992 EGLint *attrib_list = (EGLint *) 0; local
[all...]
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Degl.h203 GLAPI EGLBoolean APIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config);
206 GLAPI EGLSurface APIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list);
207 GLAPI EGLSurface APIENTRY eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list);
208 GLAPI EGLSurface APIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list);
212 GLAPI EGLContext APIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list);
/frameworks/native/opengl/include/EGL/
H A Degl.h259 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list,
267 const EGLint *attrib_list);
269 const EGLint *attrib_list);
272 const EGLint *attrib_list);
286 EGLConfig config, const EGLint *attrib_list);
299 const EGLint *attrib_list);
H A Deglext.h71 EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay display, EGLSurface surface, const EGLint *attrib_list);
74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface, const EGLint *attrib_list);
84 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
87 typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
148 EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list);
154 typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list);
227 EGLAPI EGLSyncNV EGLAPIENTRY eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
234 typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
295 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateDRMImageMESA (EGLDisplay dpy, const EGLint *attrib_list);
298 typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEDRMIMAGEMESAPROC) (EGLDisplay dpy, const EGLint *attrib_list);
[all...]
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp355 EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list, argument
373 if (attrib_list) {
379 EGLint attrib = attrib_list[0];
389 attrib = attrib_list[attribCount];
392 attribRendererable = &attrib_list[attribCount];
395 attribCaveat = &attrib_list[attribCount];
413 memcpy(&aaAttribs[4], attrib_list, attribCount * sizeof(EGLint));
429 dp->disp.dpy, attrib_list, configs, config_size, num_config);
467 const EGLint *attrib_list)
542 if (attrib_list
465 eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list) argument
590 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list) argument
610 eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
684 eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list) argument
1445 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list) argument
1465 eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list) argument
1503 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) argument
1545 eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list) argument
1624 eglCreateStreamKHR(EGLDisplay dpy, const EGLint *attrib_list) argument
1724 eglCreateStreamProducerSurfaceKHR(EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list) argument
[all...]
/frameworks/native/opengl/libagl/
H A Degl.cpp1267 NativeWindowType window, const EGLint* /*attrib_list*/)
1316 NativePixmapType pixmap, const EGLint* /*attrib_list*/)
1362 const EGLint *attrib_list)
1386 while (attrib_list[0] != EGL_NONE) {
1387 if (attrib_list[0] == EGL_WIDTH) w = attrib_list[1];
1388 if (attrib_list[0] == EGL_HEIGHT) h = attrib_list[1];
1389 attrib_list+=2;
1498 EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list, argument
1361 createPbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
1593 eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list) argument
1600 eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list) argument
1607 eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
2129 eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list) argument
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DSingleFrameTextureViewTestActivity.java167 int[] attrib_list = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE };
168 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
H A DGLTextureViewActivity.java405 int[] attrib_list = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE };
406 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java83 int[] attrib_list = {EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE };
84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java83 int[] attrib_list = {EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE };
84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java86 int[] attrib_list = {EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE };
87 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DRenderTarget.java384 int[] attrib_list = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE };
385 EGLContext ctxt = egl.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT, attrib_list);

Completed in 381 milliseconds

12