Lines Matching refs:glrc
332 HGLRC glrc = NULL; in create_gl_context() local
344 glrc = extensions.createContextAttribs(dc, NULL, glesAttribs); in create_gl_context()
345 if (NULL == glrc) { in create_gl_context()
369 glrc = extensions.createContextAttribs(dc, NULL, coreProfileAttribs); in create_gl_context()
370 if (glrc) { in create_gl_context()
377 if (NULL == glrc) { in create_gl_context()
378 glrc = wglCreateContext(dc); in create_gl_context()
380 SkASSERT(glrc); in create_gl_context()
388 return glrc; in create_gl_context()
433 HGLRC glrc = create_gl_context(dc, extensions, contextType); in Create() local
434 if (glrc) { in Create()
435 return SkNEW_ARGS(SkWGLPbufferContext, (pbuf, dc, glrc)); in Create()
453 SkWGLPbufferContext::SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc) in SkWGLPbufferContext() argument
456 , fGLRC(glrc) { in SkWGLPbufferContext()