Home
last modified time | relevance | path

Searched refs:GLXFBConfig (Results 1 – 18 of 18) sorted by relevance

/external/mesa3d/src/glx/tests/
Dcreate_context_unittest.cpp166 glXCreateContextAttribsARB(NULL, (GLXFBConfig) &this->fbc, 0, in TEST_F()
188 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F()
202 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F()
210 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F()
218 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F()
227 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F()
232 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, share, in TEST_F()
241 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F()
249 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F()
259 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F()
[all …]
/external/mesa3d/include/GL/
Dglx.h182 typedef struct __GLXFBConfigRec *GLXFBConfig; typedef
255 extern GLXFBConfig *glXChooseFBConfig( Display *dpy, int screen,
258 extern int glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config,
261 extern GLXFBConfig *glXGetFBConfigs( Display *dpy, int screen,
265 GLXFBConfig config );
267 extern GLXWindow glXCreateWindow( Display *dpy, GLXFBConfig config,
272 extern GLXPixmap glXCreatePixmap( Display *dpy, GLXFBConfig config,
277 extern GLXPbuffer glXCreatePbuffer( Display *dpy, GLXFBConfig config,
285 extern GLXContext glXCreateNewContext( Display *dpy, GLXFBConfig config,
304 typedef GLXFBConfig * (* PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
[all …]
Dglxext.h528 extern GLXFBConfig * glXGetFBConfigs (Display *dpy, int screen, int *nelements);
529 extern GLXFBConfig * glXChooseFBConfig (Display *dpy, int screen, const int *attrib_list, int *nele…
530 extern int glXGetFBConfigAttrib (Display *dpy, GLXFBConfig config, int attribute, int *value);
531 extern XVisualInfo * glXGetVisualFromFBConfig (Display *dpy, GLXFBConfig config);
532 extern GLXWindow glXCreateWindow (Display *dpy, GLXFBConfig config, Window win, const int *attrib_l…
534 extern GLXPixmap glXCreatePixmap (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attri…
536 extern GLXPbuffer glXCreatePbuffer (Display *dpy, GLXFBConfig config, const int *attrib_list);
539 extern GLXContext glXCreateNewContext (Display *dpy, GLXFBConfig config, int render_type, GLXContex…
547 typedef GLXFBConfig * ( * PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
548 typedef GLXFBConfig * ( * PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_li…
[all …]
/external/mesa3d/src/mesa/drivers/x11/
Dglxapi.h91 GLXFBConfig *(*ChooseFBConfig)(Display *dpy, int screen, const int *attribList, int *nitems);
92 …GLXContext (*CreateNewContext)(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareL…
93 GLXPbuffer (*CreatePbuffer)(Display *dpy, GLXFBConfig config, const int *attribList);
94 … GLXPixmap (*CreatePixmap)(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList);
95 GLXWindow (*CreateWindow)(Display *dpy, GLXFBConfig config, Window win, const int *attribList);
100 int (*GetFBConfigAttrib)(Display *dpy, GLXFBConfig config, int attribute, int *value);
101 GLXFBConfig *(*GetFBConfigs)(Display *dpy, int screen, int *nelements);
103 XVisualInfo *(*GetVisualFromFBConfig)(Display *dpy, GLXFBConfig config);
Drealglx.h110 extern GLXFBConfig *
115 _real_glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config,
118 extern GLXFBConfig *
122 _real_glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config );
125 _real_glXCreateWindow( Display *dpy, GLXFBConfig config, Window win,
132 _real_glXCreatePixmap( Display *dpy, GLXFBConfig config, Pixmap pixmap,
139 _real_glXCreatePbuffer( Display *dpy, GLXFBConfig config,
150 _real_glXCreateNewContext( Display *dpy, GLXFBConfig config,
Dfakeglx.c1955 Fake_glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config, in Fake_glXGetFBConfigAttrib()
1969 static GLXFBConfig *
1989 return (GLXFBConfig *) results; in Fake_glXGetFBConfigs()
1995 static GLXFBConfig *
2011 GLXFBConfig *config = (GLXFBConfig *) malloc(sizeof(XMesaVisual)); in Fake_glXChooseFBConfig()
2017 config[0] = (GLXFBConfig) xmvis; in Fake_glXChooseFBConfig()
2018 return (GLXFBConfig *) config; in Fake_glXChooseFBConfig()
2028 Fake_glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config ) in Fake_glXGetVisualFromFBConfig()
2050 Fake_glXCreateWindow( Display *dpy, GLXFBConfig config, Window win, in Fake_glXCreateWindow()
2081 Fake_glXCreatePixmap( Display *dpy, GLXFBConfig config, Pixmap pixmap, in Fake_glXCreatePixmap()
[all …]
Dglxapi.c438 GLXFBConfig PUBLIC *
450 glXCreateNewContext(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareList, Bool di… in glXCreateNewContext()
461 glXCreatePbuffer(Display *dpy, GLXFBConfig config, const int *attribList) in glXCreatePbuffer()
472 glXCreatePixmap(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList) in glXCreatePixmap()
483 glXCreateWindow(Display *dpy, GLXFBConfig config, Window win, const int *attribList) in glXCreateWindow()
535 glXGetFBConfigAttrib(Display *dpy, GLXFBConfig config, int attribute, int *value) in glXGetFBConfigAttrib()
545 GLXFBConfig PUBLIC *
567 glXGetVisualFromFBConfig(Display *dpy, GLXFBConfig config) in glXGetVisualFromFBConfig()
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
Dglx_api.c1757 glXGetFBConfigAttrib(Display *dpy, GLXFBConfig config, in glXGetFBConfigAttrib()
1771 PUBLIC GLXFBConfig *
1795 return (GLXFBConfig *) results; in glXGetFBConfigs()
1801 PUBLIC GLXFBConfig *
1817 GLXFBConfig *config = (GLXFBConfig *) malloc(sizeof(XMesaVisual)); in glXChooseFBConfig()
1823 config[0] = (GLXFBConfig) xmvis; in glXChooseFBConfig()
1824 return (GLXFBConfig *) config; in glXChooseFBConfig()
1834 glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config ) in glXGetVisualFromFBConfig()
1856 glXCreateWindow(Display *dpy, GLXFBConfig config, Window win, in glXCreateWindow()
1887 glXCreatePixmap(Display *dpy, GLXFBConfig config, Pixmap pixmap, in glXCreatePixmap()
[all …]
/external/deqp/framework/platform/X11/
DtcuX11GlxPlatform.cpp111 GlxVisual (GlxDisplay& display, GLXFBConfig fbConfig);
123 const GLXFBConfig m_fbConfig;
277 GlxVisual::GlxVisual (GlxDisplay& display, GLXFBConfig fbConfig) in GlxVisual()
541 GLXFBConfig maxConfig = DE_NULL; in chooseVisual()
544 GLXFBConfig* const fbConfigs = glXGetFBConfigs(dpy, DefaultScreen(dpy), &numElems); in chooseVisual()
/external/skia/src/gpu/gl/glx/
DSkCreatePlatformGLContext_glx.cpp96 GLXFBConfig *fbc = glXChooseFBConfig(fDisplay, DefaultScreen(fDisplay), in GLXGLContext()
127 GLXFBConfig bestFbc = fbc[best_fbc]; in GLXGLContext()
/external/mesa3d/src/glx/
Dcreate_context.c37 glXCreateContextAttribsARB(Display *dpy, GLXFBConfig config, in glXCreateContextAttribsARB()
Dglx_pbuffer.c645 glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int *attrib_list) in glXCreatePbuffer()
866 glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap, in glXCreatePixmap()
886 glXCreateWindow(Display * dpy, GLXFBConfig config, Window win, in glXCreateWindow()
Dglxcmds.c208 ValidateGLXFBConfig(Display * dpy, GLXFBConfig fbconfig) in ValidateGLXFBConfig()
1617 _X_EXPORT GLXFBConfig *
1637 return (GLXFBConfig *) config_list; in glXChooseFBConfig()
1642 glXCreateNewContext(Display * dpy, GLXFBConfig fbconfig, in glXCreateNewContext()
1662 _X_EXPORT GLXFBConfig *
1699 return (GLXFBConfig *) config_list; in glXGetFBConfigs()
1704 glXGetFBConfigAttrib(Display * dpy, GLXFBConfig fbconfig, in glXGetFBConfigAttrib()
1717 glXGetVisualFromFBConfig(Display * dpy, GLXFBConfig fbconfig) in glXGetVisualFromFBConfig()
/external/mesa3d/src/glx/apple/
Dapple_glx_drawable.h194 bool apple_glx_pbuffer_create(Display * dpy, GLXFBConfig config,
Dglx_empty.c195 glXCreateGLXPbufferSGIX(Display * dpy, GLXFBConfig config, in glXCreateGLXPbufferSGIX()
Dapple_glx_pbuffer.c120 apple_glx_pbuffer_create(Display * dpy, GLXFBConfig config, in apple_glx_pbuffer_create()
DRELEASE_NOTES52 contexts requires a similar visual or GLXFBConfig be used in the
/external/mesa3d/src/egl/drivers/glx/
Degl_glx.c127 GLXFBConfig *fbconfigs;
225 struct GLX_egl_display *GLX_dpy, GLXFBConfig fbconfig, in convert_fbconfig()
905 GLXFBConfig fbconfig = GLX_dpy->fbconfigs[GLX_egl_config_index(conf)]; in GLX_eglCreatePixmapSurface()