/third_party/mesa3d/src/glx/tests/ |
D | create_context_unittest.cpp | 192 glXCreateContextAttribsARB(NULL, (GLXFBConfig) &this->fbc, 0, in TEST_F() 205 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 219 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 227 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 234 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 243 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 248 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, share, in TEST_F() 259 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 267 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() 277 ctx = glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, in TEST_F() [all …]
|
/third_party/mesa3d/include/GL/ |
D | glx.h | 164 typedef struct __GLXFBConfigRec *GLXFBConfig; typedef 237 extern GLXFBConfig *glXChooseFBConfig( Display *dpy, int screen, 240 extern int glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config, 243 extern GLXFBConfig *glXGetFBConfigs( Display *dpy, int screen, 247 GLXFBConfig config ); 249 extern GLXWindow glXCreateWindow( Display *dpy, GLXFBConfig config, 254 extern GLXPixmap glXCreatePixmap( Display *dpy, GLXFBConfig config, 259 extern GLXPbuffer glXCreatePbuffer( Display *dpy, GLXFBConfig config, 267 extern GLXContext glXCreateNewContext( Display *dpy, GLXFBConfig config, 286 typedef GLXFBConfig * (* PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements); [all …]
|
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 …]
|
/third_party/mesa3d/src/mesa/drivers/x11/ |
D | glxapi.h | 90 GLXFBConfig *(*ChooseFBConfig)(Display *dpy, int screen, const int *attribList, int *nitems); 91 …GLXContext (*CreateNewContext)(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareL… 92 GLXPbuffer (*CreatePbuffer)(Display *dpy, GLXFBConfig config, const int *attribList); 93 … GLXPixmap (*CreatePixmap)(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList); 94 GLXWindow (*CreateWindow)(Display *dpy, GLXFBConfig config, Window win, const int *attribList); 99 int (*GetFBConfigAttrib)(Display *dpy, GLXFBConfig config, int attribute, int *value); 100 GLXFBConfig *(*GetFBConfigs)(Display *dpy, int screen, int *nelements); 102 XVisualInfo *(*GetVisualFromFBConfig)(Display *dpy, GLXFBConfig config); 185 GLXContext (*CreateContextAttribs)(Display *dpy, GLXFBConfig config,
|
D | glxapi.c | 390 GLXFBConfig PUBLIC * 402 glXCreateNewContext(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareList, Bool di… in glXCreateNewContext() 413 glXCreatePbuffer(Display *dpy, GLXFBConfig config, const int *attribList) in glXCreatePbuffer() 424 glXCreatePixmap(Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attribList) in glXCreatePixmap() 435 glXCreateWindow(Display *dpy, GLXFBConfig config, Window win, const int *attribList) in glXCreateWindow() 487 glXGetFBConfigAttrib(Display *dpy, GLXFBConfig config, int attribute, int *value) in glXGetFBConfigAttrib() 497 GLXFBConfig PUBLIC * 519 glXGetVisualFromFBConfig(Display *dpy, GLXFBConfig config) in glXGetVisualFromFBConfig() 1242 glXCreateContextAttribsARB(Display *dpy, GLXFBConfig config, in glXCreateContextAttribsARB()
|
D | fakeglx.c | 1852 Fake_glXGetFBConfigAttrib( Display *dpy, GLXFBConfig config, in Fake_glXGetFBConfigAttrib() 1866 static GLXFBConfig * 1887 return (GLXFBConfig *) results; in Fake_glXGetFBConfigs() 1893 static GLXFBConfig * 1909 GLXFBConfig *config = malloc(sizeof(XMesaVisual)); in Fake_glXChooseFBConfig() 1915 config[0] = (GLXFBConfig) xmvis; in Fake_glXChooseFBConfig() 1916 return (GLXFBConfig *) config; in Fake_glXChooseFBConfig() 1926 Fake_glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config ) in Fake_glXGetVisualFromFBConfig() 1943 Fake_glXCreateWindow( Display *dpy, GLXFBConfig config, Window win, in Fake_glXCreateWindow() 1974 Fake_glXCreatePixmap( Display *dpy, GLXFBConfig config, Pixmap pixmap, in Fake_glXCreatePixmap() [all …]
|
/third_party/flutter/glfw/src/ |
D | glx_context.h | 73 typedef struct __GLXFBConfig* GLXFBConfig; typedef 77 typedef int (*PFNGLXGETFBCONFIGATTRIBPROC)(Display*,GLXFBConfig,int,int*); 85 typedef GLXFBConfig* (*PFNGLXGETFBCONFIGSPROC)(Display*,int,int*); 86 typedef GLXContext (*PFNGLXCREATENEWCONTEXTPROC)(Display*,GLXFBConfig,int,GLXContext,Bool); 91 typedef GLXContext (*PFNGLXCREATECONTEXTATTRIBSARBPROC)(Display*,GLXFBConfig,GLXContext,Bool,const … 92 typedef XVisualInfo* (*PFNGLXGETVISUALFROMFBCONFIGPROC)(Display*,GLXFBConfig); 93 typedef GLXWindow (*PFNGLXCREATEWINDOWPROC)(Display*,GLXFBConfig,Window,const int*);
|
D | glx_context.c | 41 static int getGLXFBConfigAttrib(GLXFBConfig fbconfig, int attrib) in getGLXFBConfigAttrib() 50 static GLFWbool chooseGLXFBConfig(const _GLFWfbconfig* desired, GLXFBConfig* result) in chooseGLXFBConfig() 52 GLXFBConfig* nativeConfigs; in chooseGLXFBConfig() 78 const GLXFBConfig n = nativeConfigs[i]; in chooseGLXFBConfig() 124 *result = (GLXFBConfig) closest->handle; in chooseGLXFBConfig() 135 GLXFBConfig fbconfig, in createLegacyContextGLX() 434 GLXFBConfig native = NULL; in _glfwCreateContextGLX() 620 GLXFBConfig native; in _glfwChooseVisualGLX()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/ |
D | FunctionsGLX.cpp | 332 GLXFBConfig *configs = mFnPtrs->getFBConfigsPtr(mXDisplay, mXScreen, nElements); in getFBConfigs() 337 GLXFBConfig *configs = mFnPtrs->chooseFBConfigPtr(mXDisplay, mXScreen, attribList, nElements); in chooseFBConfig() 342 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in getFBConfigAttrib() 347 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in getVisualFromFBConfig() 354 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in createWindow() 363 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in createPbuffer() 382 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in createContextAttribsARB()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/ |
D | FunctionsGLX.cpp | 360 GLXFBConfig *configs = mFnPtrs->getFBConfigsPtr(mXDisplay, mXScreen, nElements); in getFBConfigs() 365 GLXFBConfig *configs = mFnPtrs->chooseFBConfigPtr(mXDisplay, mXScreen, attribList, nElements); in chooseFBConfig() 370 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in getFBConfigAttrib() 375 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in getVisualFromFBConfig() 382 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in createWindow() 391 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in createPbuffer() 407 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in createPixmap() 422 GLXFBConfig cfg = reinterpret_cast<GLXFBConfig>(config); in createContextAttribsARB()
|
/third_party/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()
|
/third_party/openGLES/api/GL/ |
D | glxext.h | 32 typedef struct __GLXFBConfigRec *GLXFBConfig; typedef 91 typedef GLXFBConfig *( *PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements); 92 typedef GLXFBConfig *( *PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list… 93 typedef int ( *PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *… 94 typedef XVisualInfo *( *PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config); 95 typedef GLXWindow ( *PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const i… 97 typedef GLXPixmap ( *PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, cons… 99 typedef GLXPbuffer ( *PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib… 102 typedef GLXContext ( *PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_typ… 109 GLXFBConfig *glXGetFBConfigs (Display *dpy, int screen, int *nelements); [all …]
|
/third_party/skia/third_party/externals/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 …]
|
/third_party/skia/third_party/externals/opengl-registry/api/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 …]
|
/third_party/flutter/skia/third_party/externals/opencl-lib/3-0/include/GL/ |
D | glxew.h | 260 typedef struct __GLXFBConfigRec *GLXFBConfig; typedef 280 typedef GLXFBConfig* ( * PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_lis… 281 typedef GLXContext ( * PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_ty… 282 typedef GLXPbuffer ( * PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attri… 283 typedef GLXPixmap ( * PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, con… 284 typedef GLXWindow ( * PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const … 289 typedef int ( * PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int … 290 typedef GLXFBConfig* ( * PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements); 292 typedef XVisualInfo* ( * PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config); 357 typedef GLXContext ( * PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display* dpy, GLXFBConfig config, GLXCon… [all …]
|
/third_party/openGLES/extensions/NV/ |
D | NV_multisample_coverage.txt | 203 (modify GLX_SAMPLES entry in Table 3.1: GLXFBConfig attributes, 210 (add a new entry to Table 3.1: GLXFBConfig attributes, p.12, 227 match criteria for GLXFBConfig attributes, p. 19) 237 for GLXFBConfig attributes, p. 19, following the 249 match criteria for GLXFBConfig attributes, p. 19, by incrementing 379 SAMPLES_ARB when choosing a multisample GLXFBConfig or pixel 384 return a CSAA GLXFBConfig or pixel format. 396 applications to query properties of a GLXFBConfig or pixel 398 about a GLXFBConfig or pixel format after choosing one with the 400 routines to apply custom GLXFBConfig/pixel format selection [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_multisample_coverage.txt | 203 (modify GLX_SAMPLES entry in Table 3.1: GLXFBConfig attributes, 210 (add a new entry to Table 3.1: GLXFBConfig attributes, p.12, 227 match criteria for GLXFBConfig attributes, p. 19) 237 for GLXFBConfig attributes, p. 19, following the 249 match criteria for GLXFBConfig attributes, p. 19, by incrementing 379 SAMPLES_ARB when choosing a multisample GLXFBConfig or pixel 384 return a CSAA GLXFBConfig or pixel format. 396 applications to query properties of a GLXFBConfig or pixel 398 about a GLXFBConfig or pixel format after choosing one with the 400 routines to apply custom GLXFBConfig/pixel format selection [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/ |
D | SDL_x11opengl.h | 44 GLXContext (*glXCreateContextAttribsARB) (Display*,GLXFBConfig,GLXContext,Bool,const int *); 45 GLXFBConfig *(*glXChooseFBConfig) (Display*,int,const int *,int *);
|
/third_party/flutter/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()
|
/third_party/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() 305 GLXContext GLXGLTestContext::CreateBestContext(bool isES, Display* display, GLXFBConfig bestFbc, in CreateBestContext()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OML/ |
D | GLX_OML_swap_method.txt | 33 GLXFBConfig. The GLX_SWAP_METHOD indicates how front and back 34 buffers are swapped when the GLXFBConfig is double-buffered. 90 the operation. If the GLXFBConfig does not support a back buffer,
|
/third_party/openGLES/extensions/OML/ |
D | GLX_OML_swap_method.txt | 33 GLXFBConfig. The GLX_SWAP_METHOD indicates how front and back 34 buffers are swapped when the GLXFBConfig is double-buffered. 90 the operation. If the GLXFBConfig does not support a back buffer,
|
/third_party/mesa3d/src/gallium/frontends/glx/xlib/ |
D | glx_api.c | 1777 glXGetFBConfigAttrib(Display *dpy, GLXFBConfig config, in glXGetFBConfigAttrib() 1791 PUBLIC GLXFBConfig * 1814 return (GLXFBConfig *) results; in glXGetFBConfigs() 1820 PUBLIC GLXFBConfig * 1836 GLXFBConfig *config = malloc(sizeof(XMesaVisual)); in glXChooseFBConfig() 1842 config[0] = (GLXFBConfig) xmvis; in glXChooseFBConfig() 1843 return (GLXFBConfig *) config; in glXChooseFBConfig() 1853 glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config ) in glXGetVisualFromFBConfig() 1875 glXCreateWindow(Display *dpy, GLXFBConfig config, Window win, in glXCreateWindow() 1906 glXCreatePixmap(Display *dpy, GLXFBConfig config, Pixmap pixmap, in glXCreatePixmap() [all …]
|
/third_party/skia/tools/sk_app/unix/ |
D | GLWindowContext_unix.cpp | 44 GLXFBConfig* fFBConfig; 63 using CreateContextAttribsFn = GLXContext(Display*, GLXFBConfig, GLXContext, Bool, const int*);
|
/third_party/flutter/skia/tools/sk_app/unix/ |
D | GLWindowContext_unix.cpp | 44 GLXFBConfig* fFBConfig; 63 using CreateContextAttribsFn = GLXContext(Display*, GLXFBConfig, GLXContext, Bool, const int*);
|