Home
last modified time | relevance | path

Searched refs:shareList (Results 1 – 20 of 20) sorted by relevance

/external/mesa3d/src/glx/tests/
Dfake_glx_screen.cpp55 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()
83 struct glx_context *shareList, in applegl_create_context() argument
86 return indirect_create_context(base, config_base, shareList, renderType); in applegl_create_context()
Dfake_glx_screen.h110 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/
Ddriwindows_glx.c162 struct glx_context *shareList, int renderType) in driwindows_create_context() argument
176 if (shareList) { in driwindows_create_context()
180 if (shareList->vtable->destroy != driwindows_destroy_context) { in driwindows_create_context()
184 pcp_shared = (struct driwindows_context *) shareList; in driwindows_create_context()
216 struct glx_context *shareList, in driwindows_create_context_attribs() argument
251 if (shareList) { in driwindows_create_context_attribs()
255 if (shareList->vtable->destroy != driwindows_destroy_context) { in driwindows_create_context_attribs()
259 pcp_shared = (struct driwindows_context *) shareList; in driwindows_create_context_attribs()
Dapplegl_glx.c126 struct glx_context *shareList, int renderType) in applegl_create_context() argument
151 shareList ? shareList->driContext : NULL, in applegl_create_context()
Dglxclient.h113 struct glx_context *shareList,
488 struct glx_context *shareList,
493 struct glx_context *shareList,
815 struct glx_context *shareList, int renderType);
837 struct glx_context *shareList, int renderType);
841 struct glx_context *shareList,
Dglxcmds.c326 struct glx_context *shareList = (struct glx_context *) shareList_user; in CreateContext() local
339 gc = applegl_create_context(psc, config, shareList, renderType); in CreateContext()
342 gc = psc->vtable->create_context(psc, config, shareList, renderType); in CreateContext()
344 gc = indirect_create_context(psc, config, shareList, renderType); in CreateContext()
361 req->shareList = shareList ? shareList->xid : None; in CreateContext()
377 req->shareList = shareList ? shareList->xid : None; in CreateContext()
398 req->shareList = shareList ? shareList->xid : None; in CreateContext()
413 gc->share_xid = shareList ? shareList->xid : None; in CreateContext()
436 GLXContext shareList, Bool allowDirect) in glXCreateContext() argument
467 return CreateContext(dpy, vis->visualid, config, shareList, allowDirect, in glXCreateContext()
[all …]
Ddrisw_glx.c488 struct glx_context *shareList, int renderType) in drisw_create_context() argument
502 if (shareList) { in drisw_create_context()
506 if (shareList->vtable->destroy != drisw_destroy_context) { in drisw_create_context()
510 pcp_shared = (struct drisw_context *) shareList; in drisw_create_context()
541 struct glx_context *shareList, in drisw_create_context_attribs() argument
574 if (!dri2_check_no_error(flags, shareList, major_ver, error)) in drisw_create_context_attribs()
589 if (shareList) { in drisw_create_context_attribs()
590 pcp_shared = (struct drisw_context *) shareList; in drisw_create_context_attribs()
Dindirect_glx.c363 struct glx_context *shareList, int renderType) in indirect_create_context() argument
455 struct glx_context *shareList, in indirect_create_context_attribs() argument
477 return indirect_create_context(base, config_base, shareList, renderType); in indirect_create_context_attribs()
Ddri3_glx.c233 struct glx_context *shareList, in dri3_create_context_attribs() argument
262 if (!dri2_check_no_error(flags, shareList, major_ver, error)) { in dri3_create_context_attribs()
270 if (shareList) { in dri3_create_context_attribs()
271 pcp_shared = (struct dri3_context *) shareList; in dri3_create_context_attribs()
342 struct glx_context *shareList, int renderType) in dri3_create_context() argument
347 return dri3_create_context_attribs(base, config_base, shareList, in dri3_create_context()
Ddri2_glx.c182 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
266 if (!dri2_check_no_error(flags, shareList, major_ver, error)) { in dri2_create_context_attribs()
274 if (shareList) { in dri2_create_context_attribs()
275 pcp_shared = (struct dri2_context *) shareList; in dri2_create_context_attribs()
Ddri_glx.c559 struct glx_context *shareList, int renderType) in dri_create_context() argument
574 if (shareList) { in dri_create_context()
578 if (shareList->vtable->destroy != dri_destroy_context) { in dri_create_context()
582 pcp_shared = (struct dri_context *) shareList; in dri_create_context()
/external/mesa3d/src/mesa/drivers/x11/
Dglxapi.h65 …GLXContext (*CreateContext)(Display *dpy, XVisualInfo *visinfo, GLXContext shareList, Bool direct);
91 …teNewContext)(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareList, Bool direct);
Dglxapi.c173 glXCreateContext(Display *dpy, XVisualInfo *visinfo, GLXContext shareList, Bool direct) in glXCreateContext() argument
179 return t->CreateContext(dpy, visinfo, shareList, direct); in glXCreateContext()
402 glXCreateNewContext(Display *dpy, GLXFBConfig config, int renderType, GLXContext shareList, Bool di… in glXCreateNewContext() argument
408 return t->CreateNewContext(dpy, config, renderType, shareList, direct); in glXCreateNewContext()
Dfakeglx.c2232 int renderType, GLXContext shareList, Bool direct ) in Fake_glXCreateNewContext() argument
2247 xmCtx = XMesaCreateContext(xmvis, (XMesaContext) shareList); in Fake_glXCreateNewContext()
/external/angle/src/libANGLE/renderer/gl/glx/
Dfunctionsglx_typedefs.h24 GLXContext shareList,
/external/mesa3d/include/GL/
Dglx.h186 GLXContext shareList, Bool direct );
268 int renderType, GLXContext shareList,
/external/skia/tools/gpu/gl/glx/
DCreatePlatformGLTestContext_glx.cpp56 GLXGLTestContext(GrGLStandard forcedGpuAPI, GLXGLTestContext* shareList);
/external/skqp/tools/gpu/gl/glx/
DCreatePlatformGLTestContext_glx.cpp56 GLXGLTestContext(GrGLStandard forcedGpuAPI, GLXGLTestContext* shareList);
/external/OpenCL-CTS/test_conformance/gl/GLEW/GL/
Dglxew.h149 extern GLXContext glXCreateContext (Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool dire…
/external/mesa3d/docs/
Dversions.rst112 - glXCreateContext()'s shareList parameter works as it's supposed to.
113 XMesaCreateContext() updated to accept a shareList parameter too.