Home | History | Annotate | Download | only in glx

Lines Matching refs:gc

44    struct glx_context *gc = NULL;
78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs,
83 if (gc == NULL) {
85 gc = applegl_create_context(psc, cfg, share, 0);
87 gc = indirect_create_context(psc, cfg, share, 0);
91 gc->xid = xcb_generate_id(c);
92 gc->share_xid = (share != NULL) ? share->xid : 0;
104 gc->xid,
107 gc->share_xid,
108 gc->isDirect,
114 gc->vtable->destroy(gc);
115 gc = NULL;
121 return (GLXContext) gc;