/external/mesa3d/src/glx/tests/ |
D | create_context_unittest.cpp | 168 glXCreateContextAttribsARB(NULL, (GLXFBConfig) &this->fbc, 0, in TEST_F() 190 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 204 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 212 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 220 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 229 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 234 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, share, in TEST_F() 243 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 251 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 261 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() [all …]
|
/external/mesa3d/include/GL/ |
D | glx.h | 169 typedef struct __GLXFBConfigRec *GLXFBConfig; typedef 242 extern GLXFBConfig *glXChooseFBConfig( Display *dpy, int screen, 245 extern int glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config, 248 extern GLXFBConfig *glXGetFBConfigs( Display *dpy, int screen, 252 GLXFBConfig config ); 254 extern GLXWindow glXCreateWindow( Display *dpy, GLXFBConfig config, 259 extern GLXPixmap glXCreatePixmap( Display *dpy, GLXFBConfig config, 264 extern GLXPbuffer glXCreatePbuffer( Display *dpy, GLXFBConfig config, 272 extern GLXContext glXCreateNewContext( Display *dpy, GLXFBConfig config, 291 typedef GLXFBConfig * (* PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements); [all …]
|
D | glxext.h | 53 typedef struct __GLXFBConfigRec *GLXFBConfig; typedef 112 typedef GLXFBConfig *( *PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements); 113 typedef GLXFBConfig *( *PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list… 114 typedef int ( *PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *… 115 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config); 116 typedef GLXWindow ( *PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const i… 118 typedef GLXPixmap ( *PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, cons… 120 typedef GLXPbuffer ( *PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib… 123 typedef GLXContext ( *PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_typ… 130 GLXFBConfig *glXGetFBConfigs (Display *dpy, int screen, int *nelements); [all …]
|
/external/mesa3d/src/mesa/drivers/x11/ |
D | glxapi.h | 91 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); 206 GLXContext (*CreateContextAttribs)(Display *dpy, GLXFBConfig config,
|
D | glxapi.c | 395 GLXFBConfig PUBLIC * 407 glXCreateNewContext(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareList, Bool di… in glXCreateNewContext() 418 glXCreatePbuffer(Display *dpy, GLXFBConfig config, const int *attribList) in glXCreatePbuffer() 429 glXCreatePixmap(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList) in glXCreatePixmap() 440 glXCreateWindow(Display *dpy, GLXFBConfig config, Window win, const int *attribList) in glXCreateWindow() 492 glXGetFBConfigAttrib(Display *dpy, GLXFBConfig config, int attribute, int *value) in glXGetFBConfigAttrib() 502 GLXFBConfig PUBLIC * 524 glXGetVisualFromFBConfig(Display *dpy, GLXFBConfig config) in glXGetVisualFromFBConfig() 1382 glXCreateContextAttribsARB(Display *dpy, GLXFBConfig config, in glXCreateContextAttribsARB()
|
D | fakeglx.c | 1889 Fake_glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config, in Fake_glXGetFBConfigAttrib() 1903 static GLXFBConfig * 1924 return (GLXFBConfig *) results; in Fake_glXGetFBConfigs() 1930 static GLXFBConfig * 1946 GLXFBConfig *config = malloc(sizeof(XMesaVisual)); in Fake_glXChooseFBConfig() 1952 config[0] = (GLXFBConfig) xmvis; in Fake_glXChooseFBConfig() 1953 return (GLXFBConfig *) config; in Fake_glXChooseFBConfig() 1963 Fake_glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config ) in Fake_glXGetVisualFromFBConfig() 1980 Fake_glXCreateWindow( Display *dpy, GLXFBConfig config, Window win, in Fake_glXCreateWindow() 2011 Fake_glXCreatePixmap( Display *dpy, GLXFBConfig config, Pixmap pixmap, in Fake_glXCreatePixmap() [all …]
|
/external/swiftshader/include/GL/ |
D | glxext.h | 51 typedef struct __GLXFBConfigRec *GLXFBConfig; typedef 110 typedef GLXFBConfig *( *PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements); 111 typedef GLXFBConfig *( *PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list… 112 typedef int ( *PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *… 113 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config); 114 typedef GLXWindow ( *PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const i… 116 typedef GLXPixmap ( *PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, cons… 118 typedef GLXPbuffer ( *PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib… 121 typedef GLXContext ( *PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_typ… 128 GLXFBConfig *glXGetFBConfigs (Display *dpy, int screen, int *nelements); [all …]
|
/external/mesa3d/src/glx/ |
D | glxglvnddispatchfuncs.h | 11 static inline int AddFBConfigMapping(Display *dpy, GLXFBConfig config, in AddFBConfigMapping() 17 static inline int AddFBConfigsMapping(Display *dpy, const GLXFBConfig *ret, in AddFBConfigsMapping() 59 static inline __GLXvendorInfo *GetDispatchFromFBConfig(Display *dpy, GLXFBConfig config) in GetDispatchFromFBConfig()
|
D | create_context.c | 37 glXCreateContextAttribsARB(Display *dpy, GLXFBConfig config, in glXCreateContextAttribsARB()
|
D | glxcmds.c | 205 ValidateGLXFBConfig(Display * dpy, GLXFBConfig fbconfig) in ValidateGLXFBConfig() 1600 _GLX_PUBLIC GLXFBConfig * 1620 return (GLXFBConfig *) config_list; in glXChooseFBConfig() 1625 glXCreateNewContext(Display * dpy, GLXFBConfig fbconfig, in glXCreateNewContext() 1667 _GLX_PUBLIC GLXFBConfig * 1704 return (GLXFBConfig *) config_list; in glXGetFBConfigs() 1709 glXGetFBConfigAttrib(Display * dpy, GLXFBConfig fbconfig, in glXGetFBConfigAttrib() 1722 glXGetVisualFromFBConfig(Display * dpy, GLXFBConfig fbconfig) in glXGetVisualFromFBConfig()
|
D | glx_pbuffer.c | 698 glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int *attrib_list) in glXCreatePbuffer() 919 glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap, in glXCreatePixmap() 939 glXCreateWindow(Display * dpy, GLXFBConfig config, Window win, in glXCreateWindow()
|
/external/autotest/client/deps/glbench/src/ |
D | glx_stuff.h | 34 const GLXFBConfig fb_config() const { in fb_config() 40 GLXFBConfig fb_config_;
|
D | glx_stuff.cc | 82 GLXFBConfig *fb_configs = glXChooseFBConfig(g_xlib_display, screen, in GetXVisual()
|
/external/skia/tools/gpu/gl/glx/ |
D | CreatePlatformGLTestContext_glx.cpp | 61 static GLXContext CreateBestContext(bool isES, Display* display, GLXFBConfig bestFbc, 144 GLXFBConfig *fbc = glXChooseFBConfig(fDisplay, DefaultScreen(fDisplay), in GLXGLTestContext() 177 GLXFBConfig bestFbc = fbc[best_fbc]; in GLXGLTestContext() 298 GLXContext GLXGLTestContext::CreateBestContext(bool isES, Display* display, GLXFBConfig bestFbc, in CreateBestContext()
|
/external/skqp/tools/gpu/gl/glx/ |
D | CreatePlatformGLTestContext_glx.cpp | 61 static GLXContext CreateBestContext(bool isES, Display* display, GLXFBConfig bestFbc, 144 GLXFBConfig *fbc = glXChooseFBConfig(fDisplay, DefaultScreen(fDisplay), in GLXGLTestContext() 177 GLXFBConfig bestFbc = fbc[best_fbc]; in GLXGLTestContext() 298 GLXContext GLXGLTestContext::CreateBestContext(bool isES, Display* display, GLXFBConfig bestFbc, in CreateBestContext()
|
/external/mesa3d/src/gallium/state_trackers/glx/xlib/ |
D | glx_api.c | 1816 glXGetFBConfigAttrib(Display *dpy, GLXFBConfig config, in glXGetFBConfigAttrib() 1830 PUBLIC GLXFBConfig * 1853 return (GLXFBConfig *) results; in glXGetFBConfigs() 1859 PUBLIC GLXFBConfig * 1875 GLXFBConfig *config = malloc(sizeof(XMesaVisual)); in glXChooseFBConfig() 1881 config[0] = (GLXFBConfig) xmvis; in glXChooseFBConfig() 1882 return (GLXFBConfig *) config; in glXChooseFBConfig() 1892 glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config ) in glXGetVisualFromFBConfig() 1914 glXCreateWindow(Display *dpy, GLXFBConfig config, Window win, in glXCreateWindow() 1945 glXCreatePixmap(Display *dpy, GLXFBConfig config, Pixmap pixmap, in glXCreatePixmap() [all …]
|
/external/skia/tools/sk_app/unix/ |
D | GLWindowContext_unix.cpp | 37 GLXFBConfig* fFBConfig; 56 using CreateContextAttribsFn = GLXContext(Display*, GLXFBConfig, GLXContext, Bool, const int*);
|
D | WindowContextFactory_unix.h | 26 GLXFBConfig* fFBConfig;
|
D | Window_unix.h | 82 GLXFBConfig* fFBConfig;
|
/external/skqp/tools/sk_app/unix/ |
D | GLWindowContext_unix.cpp | 37 GLXFBConfig* fFBConfig; 56 using CreateContextAttribsFn = GLXContext(Display*, GLXFBConfig, GLXContext, Bool, const int*);
|
D | WindowContextFactory_unix.h | 26 GLXFBConfig* fFBConfig;
|
D | Window_unix.h | 82 GLXFBConfig* fFBConfig;
|
/external/deqp/framework/platform/lnx/X11/ |
D | tcuLnxX11GlxPlatform.cpp | 117 GlxVisual (GlxDisplay& display, GLXFBConfig fbConfig); 130 const GLXFBConfig m_fbConfig; 284 GlxVisual::GlxVisual (GlxDisplay& display, GLXFBConfig fbConfig) in GlxVisual() 604 GLXFBConfig maxConfig = DE_NULL; in chooseVisual() 607 GLXFBConfig* const fbConfigs = glXGetFBConfigs(dpy, DefaultScreen(dpy), &numElems); in chooseVisual()
|
/external/mesa3d/src/glx/apple/ |
D | apple_glx_drawable.h | 194 bool apple_glx_pbuffer_create(Display * dpy, GLXFBConfig config,
|
D | glx_empty.c | 195 glXCreateGLXPbufferSGIX(Display * dpy, GLXFBConfig config, in glXCreateGLXPbufferSGIX()
|