Home
last modified time | relevance | path

Searched refs:GLXFBConfigSGIX (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/mesa/drivers/x11/
Dglxapi.h137 int (*GetFBConfigAttribSGIX)(Display *, GLXFBConfigSGIX, int, int *);
138 GLXFBConfigSGIX * (*ChooseFBConfigSGIX)(Display *, int, int *, int *);
139 GLXPixmap (*CreateGLXPixmapWithConfigSGIX)(Display *, GLXFBConfigSGIX, Pixmap);
140 GLXContext (*CreateContextWithConfigSGIX)(Display *, GLXFBConfigSGIX, int, GLXContext, Bool);
141 XVisualInfo * (*GetVisualFromFBConfigSGIX)(Display *, GLXFBConfigSGIX);
142 GLXFBConfigSGIX (*GetFBConfigFromVisualSGIX)(Display *, XVisualInfo *);
145 …GLXPbufferSGIX (*CreateGLXPbufferSGIX)(Display *, GLXFBConfigSGIX, unsigned int, unsigned int, int…
Dglxapi.c716 glXGetFBConfigAttribSGIX(Display *dpy, GLXFBConfigSGIX config, int attribute, int *value) in glXGetFBConfigAttribSGIX()
725 GLXFBConfigSGIX PUBLIC *
736 glXCreateGLXPixmapWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap) in glXCreateGLXPixmapWithConfigSGIX()
746 glXCreateContextWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, int render_type, GLXContext sh… in glXCreateContextWithConfigSGIX()
756 glXGetVisualFromFBConfigSGIX(Display *dpy, GLXFBConfigSGIX config) in glXGetVisualFromFBConfigSGIX()
765 GLXFBConfigSGIX PUBLIC
780 glXCreateGLXPbufferSGIX(Display *dpy, GLXFBConfigSGIX config, unsigned int width, unsigned int heig… in glXCreateGLXPbufferSGIX()
Dfakeglx.c2436 Fake_glXGetFBConfigAttribSGIX(Display *dpy, GLXFBConfigSGIX config, int attribute, int *value) in Fake_glXGetFBConfigAttribSGIX()
2441 static GLXFBConfigSGIX *
2449 Fake_glXCreateGLXPixmapWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap) in Fake_glXCreateGLXPixmapWithConfigSGIX()
2458 Fake_glXCreateContextWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, int render_type, GLXConte… in Fake_glXCreateContextWithConfigSGIX()
2473 Fake_glXGetVisualFromFBConfigSGIX(Display *dpy, GLXFBConfigSGIX config) in Fake_glXGetVisualFromFBConfigSGIX()
2479 static GLXFBConfigSGIX
2488 return (GLXFBConfigSGIX) xmvis; in Fake_glXGetFBConfigFromVisualSGIX()
2496 Fake_glXCreateGLXPbufferSGIX(Display *dpy, GLXFBConfigSGIX config, in Fake_glXCreateGLXPbufferSGIX()
/external/swiftshader/include/GL/
Dglxext.h651 typedef struct __GLXFBConfigRec *GLXFBConfigSGIX; typedef
662 typedef int ( *PFNGLXGETFBCONFIGATTRIBSGIXPROC) (Display *dpy, GLXFBConfigSGIX config, int attribut…
663 typedef GLXFBConfigSGIX *( *PFNGLXCHOOSEFBCONFIGSGIXPROC) (Display *dpy, int screen, int *attrib_li…
664 typedef GLXPixmap ( *PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config…
665 typedef GLXContext ( *PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config,…
666 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config);
667 typedef GLXFBConfigSGIX ( *PFNGLXGETFBCONFIGFROMVISUALSGIXPROC) (Display *dpy, XVisualInfo *vis);
669 int glXGetFBConfigAttribSGIX (Display *dpy, GLXFBConfigSGIX config, int attribute, int *value);
670 GLXFBConfigSGIX *glXChooseFBConfigSGIX (Display *dpy, int screen, int *attrib_list, int *nelements);
671 GLXPixmap glXCreateGLXPixmapWithConfigSGIX (Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap);
[all …]
/external/mesa3d/include/GL/
Dglxext.h715 typedef struct __GLXFBConfigRec *GLXFBConfigSGIX; typedef
726 typedef int ( *PFNGLXGETFBCONFIGATTRIBSGIXPROC) (Display *dpy, GLXFBConfigSGIX config, int attribut…
727 typedef GLXFBConfigSGIX *( *PFNGLXCHOOSEFBCONFIGSGIXPROC) (Display *dpy, int screen, int *attrib_li…
728 typedef GLXPixmap ( *PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config…
729 typedef GLXContext ( *PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config,…
730 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGSGIXPROC) (Display *dpy, GLXFBConfigSGIX config);
731 typedef GLXFBConfigSGIX ( *PFNGLXGETFBCONFIGFROMVISUALSGIXPROC) (Display *dpy, XVisualInfo *vis);
733 int glXGetFBConfigAttribSGIX (Display *dpy, GLXFBConfigSGIX config, int attribute, int *value);
734 GLXFBConfigSGIX *glXChooseFBConfigSGIX (Display *dpy, int screen, int *attrib_list, int *nelements);
735 GLXPixmap glXCreateGLXPixmapWithConfigSGIX (Display *dpy, GLXFBConfigSGIX config, Pixmap pixmap);
[all …]
/external/mesa3d/src/glx/
Dg_glxglvnddispatchfuncs.c128 static GLXFBConfigSGIX *dispatch_ChooseFBConfigSGIX(Display *dpy, int screen, in dispatch_ChooseFBConfigSGIX()
134 GLXFBConfigSGIX *ret; in dispatch_ChooseFBConfigSGIX()
187 GLXFBConfigSGIX config, in dispatch_CreateContextWithConfigSGIX()
252 GLXFBConfigSGIX config, in dispatch_CreateGLXPixmapWithConfigSGIX()
337 static int dispatch_GetFBConfigAttribSGIX(Display *dpy, GLXFBConfigSGIX config, in dispatch_GetFBConfigAttribSGIX()
356 static GLXFBConfigSGIX dispatch_GetFBConfigFromVisualSGIX(Display *dpy, in dispatch_GetFBConfigFromVisualSGIX()
361 GLXFBConfigSGIX ret = NULL; in dispatch_GetFBConfigFromVisualSGIX()
422 GLXFBConfigSGIX config) in dispatch_GetVisualFromFBConfigSGIX()
Dglxcmds.c1944 (Display * dpy, GLXFBConfigSGIX config, int attribute, int *value),
1947 _GLX_PUBLIC GLX_ALIAS(GLXFBConfigSGIX *, glXChooseFBConfigSGIX,
1953 (Display * dpy, GLXFBConfigSGIX config),
1958 GLXFBConfigSGIX fbconfig, in glXCreateGLXPixmapWithConfigSGIX()
2011 GLXFBConfigSGIX fbconfig, int renderType, in glXCreateContextWithConfigSGIX()
2036 _GLX_PUBLIC GLXFBConfigSGIX
2045 return (GLXFBConfigSGIX) glx_config_find_visual(psc->configs, in glXGetFBConfigFromVisualSGIX()
Dglx_pbuffer.c683 glXCreateGLXPbufferSGIX(Display * dpy, GLXFBConfigSGIX config, in glXCreateGLXPbufferSGIX()
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
Dglx_api.c2374 glXGetFBConfigAttribSGIX(Display *dpy, GLXFBConfigSGIX config, in glXGetFBConfigAttribSGIX()
2380 PUBLIC GLXFBConfigSGIX *
2390 glXCreateGLXPixmapWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, in glXCreateGLXPixmapWithConfigSGIX()
2400 glXCreateContextWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, in glXCreateContextWithConfigSGIX()
2418 glXGetVisualFromFBConfigSGIX(Display *dpy, GLXFBConfigSGIX config) in glXGetVisualFromFBConfigSGIX()
2424 PUBLIC GLXFBConfigSGIX
2433 return (GLXFBConfigSGIX) xmvis; in glXGetFBConfigFromVisualSGIX()
2441 glXCreateGLXPbufferSGIX(Display *dpy, GLXFBConfigSGIX config, in glXCreateGLXPbufferSGIX()