/external/mesa3d/src/glx/tests/ |
D | fake_glx_screen.cpp | 55 struct glx_context *shareList, int renderType) in indirect_create_context() argument 57 (void) shareList; in indirect_create_context() 66 struct glx_context *shareList, in indirect_create_context_attribs() argument 75 return indirect_create_context(base, config_base, shareList, 0); in indirect_create_context_attribs()
|
D | fake_glx_screen.h | 110 struct glx_context *shareList, int renderType) in create() argument 112 (void) shareList; in create() 120 struct glx_context *shareList, in create_attribs() argument 125 (void) shareList; in create_attribs()
|
/external/mesa3d/src/glx/ |
D | driwindows_glx.c | 161 struct glx_context *shareList, int renderType) in driwindows_create_context() argument 175 if (shareList) { in driwindows_create_context() 179 if (shareList->vtable->destroy != driwindows_destroy_context) { in driwindows_create_context() 183 pcp_shared = (struct driwindows_context *) shareList; in driwindows_create_context() 215 struct glx_context *shareList, in driwindows_create_context_attribs() argument 250 if (shareList) { in driwindows_create_context_attribs() 254 if (shareList->vtable->destroy != driwindows_destroy_context) { in driwindows_create_context_attribs() 258 pcp_shared = (struct driwindows_context *) shareList; in driwindows_create_context_attribs()
|
D | applegl_glx.c | 126 struct glx_context *shareList, int renderType) in applegl_create_context() argument 151 shareList ? shareList->driContext : NULL, in applegl_create_context()
|
D | glxclient.h | 113 struct glx_context *shareList, 489 struct glx_context *shareList, 494 struct glx_context *shareList, 813 struct glx_context *shareList, int renderType); 835 struct glx_context *shareList, int renderType); 839 struct glx_context *shareList,
|
D | glxcmds.c | 284 struct glx_context *shareList = (struct glx_context *) shareList_user; in CreateContext() local 297 gc = applegl_create_context(psc, config, shareList, renderType); in CreateContext() 300 gc = psc->vtable->create_context(psc, config, shareList, renderType); in CreateContext() 302 gc = indirect_create_context(psc, config, shareList, renderType); in CreateContext() 319 req->shareList = shareList ? shareList->xid : None; in CreateContext() 335 req->shareList = shareList ? shareList->xid : None; in CreateContext() 356 req->shareList = shareList ? shareList->xid : None; in CreateContext() 371 gc->share_xid = shareList ? shareList->xid : None; in CreateContext() 379 GLXContext shareList, Bool allowDirect) in glXCreateContext() argument 431 return CreateContext(dpy, vis->visualid, config, shareList, allowDirect, in glXCreateContext() [all …]
|
D | drisw_glx.c | 352 struct glx_context *shareList, int renderType) in drisw_create_context() argument 366 if (shareList) { in drisw_create_context() 370 if (shareList->vtable->destroy != drisw_destroy_context) { in drisw_create_context() 374 pcp_shared = (struct drisw_context *) shareList; in drisw_create_context() 405 struct glx_context *shareList, in drisw_create_context_attribs() argument 445 if (shareList) { in drisw_create_context_attribs() 446 pcp_shared = (struct drisw_context *) shareList; in drisw_create_context_attribs()
|
D | indirect_glx.c | 343 struct glx_context *shareList, int renderType) in indirect_create_context() argument 439 struct glx_context *shareList, in indirect_create_context_attribs() argument 461 return indirect_create_context(base, config_base, shareList, renderType); in indirect_create_context_attribs()
|
D | dri3_glx.c | 253 struct glx_context *shareList, in dri3_create_context_attribs() argument 285 if (shareList) { in dri3_create_context_attribs() 286 pcp_shared = (struct dri3_context *) shareList; in dri3_create_context_attribs() 348 struct glx_context *shareList, int renderType) in dri3_create_context() argument 352 return dri3_create_context_attribs(base, config_base, shareList, in dri3_create_context()
|
D | dri2_glx.c | 182 struct glx_context *shareList, int renderType) in dri2_create_context() argument 193 if (shareList) { in dri2_create_context() 197 if (shareList->vtable->destroy != dri2_destroy_context) { in dri2_create_context() 201 pcp_shared = (struct dri2_context *) shareList; in dri2_create_context() 233 struct glx_context *shareList, in dri2_create_context_attribs() argument 269 if (shareList) { in dri2_create_context_attribs() 270 pcp_shared = (struct dri2_context *) shareList; in dri2_create_context_attribs()
|
D | dri_glx.c | 586 struct glx_context *shareList, int renderType) in dri_create_context() argument 601 if (shareList) { in dri_create_context() 605 if (shareList->vtable->destroy != dri_destroy_context) { in dri_create_context() 609 pcp_shared = (struct dri_context *) shareList; in dri_create_context()
|
/external/mesa3d/src/mesa/drivers/x11/ |
D | glxapi.h | 66 …GLXContext (*CreateContext)(Display *dpy, XVisualInfo *visinfo, GLXContext shareList, Bool direct); 92 …teNewContext)(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareList, Bool direct);
|
D | glxapi.c | 178 glXCreateContext(Display *dpy, XVisualInfo *visinfo, GLXContext shareList, Bool direct) in glXCreateContext() argument 184 return t->CreateContext(dpy, visinfo, shareList, direct); in glXCreateContext() 407 glXCreateNewContext(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareList, Bool di… in glXCreateNewContext() argument 413 return t->CreateNewContext(dpy, config, renderType, shareList, direct); in glXCreateNewContext()
|
D | fakeglx.c | 2250 int renderType, GLXContext shareList, Bool direct ) in Fake_glXCreateNewContext() argument 2265 xmCtx = XMesaCreateContext(xmvis, (XMesaContext) shareList); in Fake_glXCreateNewContext()
|
/external/mesa3d/include/GL/ |
D | glx.h | 191 GLXContext shareList, Bool direct ); 273 int renderType, GLXContext shareList,
|
/external/skia/tools/gpu/gl/glx/ |
D | CreatePlatformGLTestContext_glx.cpp | 56 GLXGLTestContext(GrGLStandard forcedGpuAPI, GLXGLTestContext* shareList);
|
/external/skqp/tools/gpu/gl/glx/ |
D | CreatePlatformGLTestContext_glx.cpp | 56 GLXGLTestContext(GrGLStandard forcedGpuAPI, GLXGLTestContext* shareList);
|
/external/mesa3d/docs/ |
D | VERSIONS | 79 - glXCreateContext()'s shareList parameter works as it's supposed to. 80 XMesaCreateContext() updated to accept a shareList parameter too.
|