/external/mesa3d/src/glx/ |
indirect_glx.c | 246 int buffer, const int *attrib_list) 258 if (attrib_list) { 259 while (attrib_list[i * 2] != None) 284 if (attrib_list) { 285 while (attrib_list[i * 2] != None) { 286 *attrib_ptr++ = (CARD32) attrib_list[i * 2 + 0]; 287 *attrib_ptr++ = (CARD32) attrib_list[i * 2 + 1];
|
/external/chromium_org/third_party/mesa/src/include/GL/ |
glxext.h | 529 extern GLXFBConfig * glXChooseFBConfig (Display *dpy, int screen, const int *attrib_list, int *nelements); 532 extern GLXWindow glXCreateWindow (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list); 534 extern GLXPixmap glXCreatePixmap (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list); 536 extern GLXPbuffer glXCreatePbuffer (Display *dpy, GLXFBConfig config, const int *attrib_list); 548 typedef GLXFBConfig * ( * PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements); 551 typedef GLXWindow ( * PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list); 553 typedef GLXPixmap ( * PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list); 555 typedef GLXPbuffer ( * PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib_list); 598 extern GLXContext glXCreateContextAttribsARB (Display *dpy, GLXFBConfig config, GLXContext share_context, Bool direct, const int *attrib_list); 600 typedef GLXContext ( * PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display *dpy, GLXFBConfig config, GLXContext share_context, Bool direct, const int *attrib_list); [all...] |
glx.h | 305 typedef GLXFBConfig * (* PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements); 308 typedef GLXWindow (* PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list); 310 typedef GLXPixmap (* PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list); 312 typedef GLXPbuffer (* PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib_list); 478 extern void glXBindTexImageEXT(Display *dpy, GLXDrawable drawable, int buffer, const int *attrib_list);
|
/external/mesa3d/include/GL/ |
glxext.h | 529 extern GLXFBConfig * glXChooseFBConfig (Display *dpy, int screen, const int *attrib_list, int *nelements); 532 extern GLXWindow glXCreateWindow (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list); 534 extern GLXPixmap glXCreatePixmap (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list); 536 extern GLXPbuffer glXCreatePbuffer (Display *dpy, GLXFBConfig config, const int *attrib_list); 548 typedef GLXFBConfig * ( * PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements); 551 typedef GLXWindow ( * PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list); 553 typedef GLXPixmap ( * PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list); 555 typedef GLXPbuffer ( * PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib_list); 598 extern GLXContext glXCreateContextAttribsARB (Display *dpy, GLXFBConfig config, GLXContext share_context, Bool direct, const int *attrib_list); 600 typedef GLXContext ( * PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display *dpy, GLXFBConfig config, GLXContext share_context, Bool direct, const int *attrib_list); [all...] |
glx.h | 305 typedef GLXFBConfig * (* PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements); 308 typedef GLXWindow (* PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list); 310 typedef GLXPixmap (* PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list); 312 typedef GLXPbuffer (* PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib_list); 478 extern void glXBindTexImageEXT(Display *dpy, GLXDrawable drawable, int buffer, const int *attrib_list);
|
/cts/tests/tests/media/src/android/media/cts/ |
InputSurface.java | 92 int[] attrib_list = { local 97 attrib_list, 0);
|
OutputSurface.java | 147 int[] attrib_list = { local 152 attrib_list, 0);
|
/external/chromium_org/third_party/mesa/src/src/glx/apple/ |
glx_empty.c | 197 int *attrib_list) 203 (void) attrib_list;
|
/external/mesa3d/src/glx/apple/ |
glx_empty.c | 197 int *attrib_list) 203 (void) attrib_list;
|
/cts/tests/tests/openglperf/jni/ |
OpenGlPerfNativeJni.cpp | 27 EGLenum type, const EGLint *attrib_list);
|
/external/chromium_org/third_party/mesa/src/src/egl/main/ |
eglcontext.h | 68 _EGLConfig *config, const EGLint *attrib_list);
|
eglconfig.c | 505 const EGLint *attrib_list) 519 for (i = 0; attrib_list && attrib_list[i] != EGL_NONE; i += 2) { 520 attr = attrib_list[i]; 521 val = attrib_list[i + 1]; 776 _eglChooseConfig(_EGLDriver *drv, _EGLDisplay *disp, const EGLint *attrib_list, 781 if (!_eglParseConfigAttribList(&criteria, disp, attrib_list))
|
eglapi.c | 384 eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, 392 ret = drv->API.ChooseConfig(drv, disp, attrib_list, configs, 417 const EGLint *attrib_list) 437 context = drv->API.CreateContext(drv, disp, conf, share, attrib_list); 522 EGLNativeWindowType window, const EGLint *attrib_list) 534 surf = drv->API.CreateWindowSurface(drv, disp, conf, window, attrib_list); 543 EGLNativePixmapType pixmap, const EGLint *attrib_list) 555 surf = drv->API.CreatePixmapSurface(drv, disp, conf, pixmap, attrib_list); 564 const EGLint *attrib_list) 574 surf = drv->API.CreatePbufferSurface(drv, disp, conf, attrib_list); [all...] |
/external/mesa3d/src/egl/main/ |
eglcontext.h | 68 _EGLConfig *config, const EGLint *attrib_list);
|
eglconfig.c | 505 const EGLint *attrib_list) 519 for (i = 0; attrib_list && attrib_list[i] != EGL_NONE; i += 2) { 520 attr = attrib_list[i]; 521 val = attrib_list[i + 1]; 776 _eglChooseConfig(_EGLDriver *drv, _EGLDisplay *disp, const EGLint *attrib_list, 781 if (!_eglParseConfigAttribList(&criteria, disp, attrib_list))
|
eglapi.c | 384 eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, 392 ret = drv->API.ChooseConfig(drv, disp, attrib_list, configs, 417 const EGLint *attrib_list) 437 context = drv->API.CreateContext(drv, disp, conf, share, attrib_list); 522 EGLNativeWindowType window, const EGLint *attrib_list) 534 surf = drv->API.CreateWindowSurface(drv, disp, conf, window, attrib_list); 543 EGLNativePixmapType pixmap, const EGLint *attrib_list) 555 surf = drv->API.CreatePixmapSurface(drv, disp, conf, pixmap, attrib_list); 564 const EGLint *attrib_list) 574 surf = drv->API.CreatePbufferSurface(drv, disp, conf, attrib_list); [all...] |
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
importgl.h | 65 FNDEF(EGLBoolean, eglChooseConfig, (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)); 66 FNDEF(EGLContext, eglCreateContext, (EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list)); 67 FNDEF(EGLSurface, eglCreateWindowSurface, (EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list));
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/ |
va_private.h | 75 VAStatus vlVaGetConfigAttributes (VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, VAConfigAttrib *attrib_list, int num_attribs); 76 VAStatus vlVaCreateConfig (VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, VAConfigAttrib *attrib_list, int num_attribs, VAConfigID *config_id); 78 VAStatus vlVaQueryConfigAttributes (VADriverContextP ctx, VAConfigID config_id, VAProfile *profile, VAEntrypoint *entrypoint, VAConfigAttrib *attrib_list, int *num_attribs);
|
/external/mesa3d/src/gallium/state_trackers/va/ |
va_private.h | 75 VAStatus vlVaGetConfigAttributes (VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, VAConfigAttrib *attrib_list, int num_attribs); 76 VAStatus vlVaCreateConfig (VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, VAConfigAttrib *attrib_list, int num_attribs, VAConfigID *config_id); 78 VAStatus vlVaQueryConfigAttributes (VADriverContextP ctx, VAConfigID config_id, VAProfile *profile, VAEntrypoint *entrypoint, VAConfigAttrib *attrib_list, int *num_attribs);
|
/frameworks/native/opengl/libagl/ |
egl.cpp | [all...] |
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/ |
platform_android.c | 147 const EGLint *attrib_list) 158 if (!_eglInitSurface(&dri2_surf->base, disp, type, conf, attrib_list)) 207 const EGLint *attrib_list) 210 window, attrib_list); 216 const EGLint *attrib_list) 223 _EGLConfig *conf, const EGLint *attrib_list) 226 NULL, attrib_list);
|
/external/mesa3d/src/egl/drivers/dri2/ |
platform_android.c | 147 const EGLint *attrib_list) 158 if (!_eglInitSurface(&dri2_surf->base, disp, type, conf, attrib_list)) 207 const EGLint *attrib_list) 210 window, attrib_list); 216 const EGLint *attrib_list) 223 _EGLConfig *conf, const EGLint *attrib_list) 226 NULL, attrib_list);
|
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_drm_image.spec | 46 const EGLint *attrib_list); 56 Accepted in the <attrib_list> parameter of eglCreateDRMImageMESA: 85 const EGLint *attrib_list);
|
/external/mesa3d/docs/ |
MESA_drm_image.spec | 46 const EGLint *attrib_list); 56 Accepted in the <attrib_list> parameter of eglCreateDRMImageMESA: 85 const EGLint *attrib_list);
|
/external/chromium_org/ppapi/proxy/ |
ppb_graphics_3d_proxy.cc | 145 const int32_t* attrib_list) { 164 if (attrib_list) { 165 for (const int32_t* attr = attrib_list;
|