HomeSort by relevance Sort by last modified time
    Searched refs:hglrc (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_device.h 80 stw_lookup_context_locked( DHGLRC hglrc );
stw_wgl.c 52 HGLRC hglrcSrc,
53 HGLRC hglrcDst,
61 WINGDIAPI HGLRC APIENTRY
65 return (HGLRC) DrvCreateContext(hdc);
68 WINGDIAPI HGLRC APIENTRY
73 return (HGLRC) DrvCreateLayerContext( hdc, iLayerPlane );
78 HGLRC hglrc )
80 return DrvDeleteContext((DHGLRC)(UINT_PTR)hglrc );
84 WINGDIAPI HGLRC APIENTR
    [all...]
stw_icd.h 472 * Get the ICD GHGLRC handle corresponding to the specified hglrc handle.
476 DHGLRC (APIENTRY *wglCbGetDhglrc)(HGLRC hglrc);
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_device.h 80 stw_lookup_context_locked( DHGLRC hglrc );
stw_wgl.c 52 HGLRC hglrcSrc,
53 HGLRC hglrcDst,
61 WINGDIAPI HGLRC APIENTRY
65 return (HGLRC) DrvCreateContext(hdc);
68 WINGDIAPI HGLRC APIENTRY
73 return (HGLRC) DrvCreateLayerContext( hdc, iLayerPlane );
78 HGLRC hglrc )
80 return DrvDeleteContext((DHGLRC)(UINT_PTR)hglrc );
84 WINGDIAPI HGLRC APIENTR
    [all...]
stw_icd.h 472 * Get the ICD GHGLRC handle corresponding to the specified hglrc handle.
476 DHGLRC (APIENTRY *wglCbGetDhglrc)(HGLRC hglrc);
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl_c.h 35 HGLRC GL_hrc;
41 HGLRC (WINAPI *wglCreateContext)(HDC hdc);
43 BOOL (WINAPI *wglDeleteContext)(HGLRC hglrc);
45 BOOL (WINAPI *wglMakeCurrent)(HDC hdc, HGLRC hglrc);
SDL_wingl.c 118 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);
620 this->gl_data->wglCreateContext = (HGLRC (WINAPI *)(HDC))
622 this->gl_data->wglDeleteContext = (BOOL (WINAPI *)(HGLRC))
624 this->gl_data->wglMakeCurrent = (BOOL (WINAPI *)(HDC, HGLRC))
    [all...]
SDL_syswm.c 286 info->hglrc = GL_hrc;
288 info->hglrc = NULL;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wgl.c 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)
    [all...]
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wgl.c 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)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_syswm.h 148 HGLRC hglrc; /**< The OpenGL context, if any */ member in struct:SDL_SysWMinfo
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_syswm.h 148 HGLRC hglrc; /**< The OpenGL context, if any */ member in struct:SDL_SysWMinfo
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_syswm.h 148 HGLRC hglrc; /**< The OpenGL context, if any */ member in struct:SDL_SysWMinfo
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_syswm.h 148 HGLRC hglrc; /**< The OpenGL context, if any */ member in struct:SDL_SysWMinfo
  /external/chromium_org/third_party/mesa/src/include/GL/
wglext.h 491 extern BOOL WINAPI wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
494 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
537 extern HGLRC WINAPI wglCreateContextAttribsARB (HDC hDC, HGLRC hShareContext, const int *attribList);
539 typedef HGLRC (WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC) (HDC hDC, HGLRC hShareContext, const int *attribList);
575 extern BOOL WINAPI wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
    [all...]
  /external/mesa3d/include/GL/
wglext.h 491 extern BOOL WINAPI wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
494 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
537 extern HGLRC WINAPI wglCreateContextAttribsARB (HDC hDC, HGLRC hShareContext, const int *attribList);
539 typedef HGLRC (WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC) (HDC hDC, HGLRC hShareContext, const int *attribList);
575 extern BOOL WINAPI wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/include/GL/
wglext.h 491 extern BOOL WINAPI wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
494 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
537 extern HGLRC WINAPI wglCreateContextAttribsARB (HDC hDC, HGLRC hShareContext, const int *attribList);
539 typedef HGLRC (WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC) (HDC hDC, HGLRC hShareContext, const int *attribList);
575 extern BOOL WINAPI wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
    [all...]

Completed in 1971 milliseconds