Home | History | Annotate | Download | only in gdi

Lines Matching full:hglrc

157 WINGDIAPI HGLRC GLAPIENTRY wglCreateContext(HDC hdc)
176 return ((HGLRC)wgl_ctx[i].ctx);
183 WINGDIAPI BOOL GLAPIENTRY wglDeleteContext(HGLRC hglrc)
187 if ( wgl_ctx[i].ctx == (WMesaContext) hglrc ){
188 WMesaMakeCurrent((WMesaContext) hglrc, NULL);
199 WINGDIAPI HGLRC GLAPIENTRY wglGetCurrentContext(VOID)
204 return (HGLRC) wgl_ctx[ctx_current].ctx;
212 WINGDIAPI BOOL GLAPIENTRY wglMakeCurrent(HDC hdc, HGLRC hglrc)
218 if (!hdc || !hglrc) {
225 if ( wgl_ctx[i].ctx == (WMesaContext) hglrc ) {
226 WMesaMakeCurrent( (WMesaContext) hglrc, hdc );
565 WINGDIAPI BOOL GLAPIENTRY wglShareLists(HGLRC hglrc1,
566 HGLRC hglrc2)
575 WINGDIAPI BOOL GLAPIENTRY wglCopyContext(HGLRC hglrcSrc,
576 HGLRC hglrcDst,
583 WINGDIAPI HGLRC GLAPIENTRY wglCreateLayerContext(HDC hdc,