Searched defs:hglrc (Results 1 - 4 of 4) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_syswm.h148 HGLRC hglrc; /**< The OpenGL context, if any */ member in struct:SDL_SysWMinfo
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
H A DSDL_wingl.c118 HGLRC hglrc; local
133 hglrc = this->gl_data->wglCreateContext(hdc);
134 if ( hglrc ) {
135 this->gl_data->wglMakeCurrent(hdc, hglrc);
159 if ( hglrc ) {
161 this->gl_data->wglDeleteContext(hglrc);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
H A Dwgl.c183 WINGDIAPI BOOL GLAPIENTRY wglDeleteContext(HGLRC hglrc) argument
187 if ( wgl_ctx[i].ctx == (WMesaContext) hglrc ){
188 WMesaMakeCurrent((WMesaContext) hglrc, NULL);
212 WINGDIAPI BOOL GLAPIENTRY wglMakeCurrent(HDC hdc, HGLRC hglrc) argument
218 if (!hdc || !hglrc) {
225 if ( wgl_ctx[i].ctx == (WMesaContext) hglrc ) {
226 WMesaMakeCurrent( (WMesaContext) hglrc, hdc );
/external/mesa3d/src/mesa/drivers/windows/gdi/
H A Dwgl.c183 WINGDIAPI BOOL GLAPIENTRY wglDeleteContext(HGLRC hglrc) argument
187 if ( wgl_ctx[i].ctx == (WMesaContext) hglrc ){
188 WMesaMakeCurrent((WMesaContext) hglrc, NULL);
212 WINGDIAPI BOOL GLAPIENTRY wglMakeCurrent(HDC hdc, HGLRC hglrc) argument
218 if (!hdc || !hglrc) {
225 if ( wgl_ctx[i].ctx == (WMesaContext) hglrc ) {
226 WMesaMakeCurrent( (WMesaContext) hglrc, hdc );

Completed in 191 milliseconds