Searched refs:glxCtx (Results 1 – 2 of 2) sorted by relevance
1282 init_glx_context(struct fake_glx_context *glxCtx, Display *dpy) in init_glx_context() argument1287 glxCtx->xmesaContext->direct = direct; in init_glx_context()1288 glxCtx->glxContext.isDirect = direct; in init_glx_context()1289 glxCtx->glxContext.currentDpy = dpy; in init_glx_context()1290 glxCtx->glxContext.xid = (XID) glxCtx; /* self pointer */ in init_glx_context()1292 assert((void *) glxCtx == (void *) &(glxCtx->glxContext)); in init_glx_context()1302 struct fake_glx_context *glxCtx; in Fake_glXCreateContext() local1308 glxCtx = CALLOC_STRUCT(fake_glx_context); in Fake_glXCreateContext()1309 if (!glxCtx) in Fake_glXCreateContext()1323 free(glxCtx); in Fake_glXCreateContext()[all …]
1051 GLXContext glxCtx; in create_context() local1056 glxCtx = CALLOC_STRUCT(__GLXcontextRec); in create_context()1057 if (!glxCtx) in create_context()1065 glxCtx->xmesaContext = XMesaCreateContext(xmvis, shareCtx, major, minor, in create_context()1067 if (!glxCtx->xmesaContext) { in create_context()1068 free(glxCtx); in create_context()1072 glxCtx->isDirect = DEFAULT_DIRECT; in create_context()1073 glxCtx->currentDpy = dpy; in create_context()1074 glxCtx->xid = (XID) glxCtx; /* self pointer */ in create_context()1076 return glxCtx; in create_context()[all …]