Searched defs:hglrc (Results 1 - 4 of 4) sorted by relevance
/vbox/src/VBox/Additions/common/crOpenGL/ |
H A D | icd_drv.c | 90 void APIENTRY DrvReleaseContext(HGLRC hglrc) argument 93 /*crDebug( "DrvReleaseContext(0x%x) called", hglrc );*/ 110 PICDTABLE APIENTRY DrvSetContext(HDC hdc, HGLRC hglrc, void *callback) argument 118 /*crDebug( "DrvSetContext called(0x%x, 0x%x)", hdc, hglrc );*/ 124 context = (ContextInfo *) crHashtableSearch(stub.contextTable, (unsigned long) hglrc); 295 BOOL APIENTRY DrvDeleteContext(HGLRC hglrc) argument 298 /*crDebug( "DrvDeleteContext(0x%x) called", hglrc );*/ 299 stubDestroyContext( (unsigned long) hglrc );
|
H A D | wgl.c | 179 DECLEXPORT(BOOL) WINAPI wglDeleteContext_prox( HGLRC hglrc ) 182 stubDestroyContext( (unsigned long) hglrc ); 186 DECLEXPORT(BOOL) WINAPI wglMakeCurrent_prox( HDC hdc, HGLRC hglrc ) 197 context = (ContextInfo *) crHashtableSearch(stub.contextTable, (unsigned long) hglrc); 200 if (hglrc!=0 && !context) 202 crWarning("wglMakeCurrent got unexpected hglrc 0x%x", hglrc); 291 DECLEXPORT(void) WINAPI VBoxCtxChromiumParameteriCR(HGLRC hglrc, GLenum param, GLint value) argument 300 context = (ContextInfo *) crHashtableSearch(stub.contextTable, (unsigned long) hglrc); 308 crWarning("invalid context %#x", hglrc); [all...] |
H A D | stub.h | 127 HGLRC hglrc; member in struct:context_info_t
|
/vbox/src/VBox/Devices/Graphics/ |
H A D | DevVGA-SVGA3d-ogl.cpp | 193 BOOL fMakeCurrentRc = wglMakeCurrent((pContext)->hdc, (pContext)->hglrc); \ 644 HGLRC hglrc; member in struct:__anon13181 712 SSMFIELD_ENTRY_IGNORE( VMSVGA3DCONTEXT, hglrc), 4385 pContext->hglrc = wglCreateContext(pContext->hdc); 4386 AssertMsgReturn(pContext->hglrc, ("wglCreateContext %x failed with %d\n", pContext->hdc, GetLastError()), VERR_INTERNAL_ERROR); 4390 ret = wglShareLists(pSharedCtx->hglrc, pContext->hglrc); 4391 AssertMsg(ret == TRUE, ("wglShareLists(%p, %p) failed with %d\n", pSharedCtx->hglrc, pContext->hglrc, GetLastError())); 4622 wglDeleteContext(pContext->hglrc); [all...] |
Completed in 73 milliseconds