Home
last modified time | relevance | path

Searched refs:hglrc (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/wgl/
Dstw_wgl.c84 HGLRC hglrc ) in wglDeleteContext() argument
86 return DrvDeleteContext((DHGLRC)(UINT_PTR)hglrc ); in wglDeleteContext()
105 HGLRC hglrc ) in wglMakeCurrent() argument
107 return DrvSetContext( hdc, (DHGLRC)(UINT_PTR)hglrc, NULL ) ? TRUE : FALSE; in wglMakeCurrent()
Dstw_ext_context.h32 typedef BOOL (WINAPI *wglDeleteContext_t)(HGLRC hglrc);
Dstw_icd.h476 DHGLRC (APIENTRY *wglCbGetDhglrc)(HGLRC hglrc);
/external/swiftshader/include/GL/
Dwglext.h121 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
124 BOOL WINAPI wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
312 typedef UINT (WINAPI * PFNWGLGETCONTEXTGPUIDAMDPROC) (HGLRC hglrc);
315 typedef BOOL (WINAPI * PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC) (HGLRC hglrc);
316 typedef BOOL (WINAPI * PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC) (HGLRC hglrc);
322 UINT WINAPI wglGetContextGPUIDAMD (HGLRC hglrc);
325 BOOL WINAPI wglDeleteAssociatedContextAMD (HGLRC hglrc);
326 BOOL WINAPI wglMakeAssociatedContextCurrentAMD (HGLRC hglrc);
382 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTEXTPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
385 BOOL WINAPI wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
/external/mesa3d/include/GL/
Dwglext.h128 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
131 BOOL WINAPI wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
319 typedef UINT (WINAPI * PFNWGLGETCONTEXTGPUIDAMDPROC) (HGLRC hglrc);
322 typedef BOOL (WINAPI * PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC) (HGLRC hglrc);
323 typedef BOOL (WINAPI * PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC) (HGLRC hglrc);
329 UINT WINAPI wglGetContextGPUIDAMD (HGLRC hglrc);
332 BOOL WINAPI wglDeleteAssociatedContextAMD (HGLRC hglrc);
333 BOOL WINAPI wglMakeAssociatedContextCurrentAMD (HGLRC hglrc);
389 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTEXTPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
392 BOOL WINAPI wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
/external/mesa3d/src/glx/windows/
Dwindowsgl.c321 HGLRC hglrc = wglCreateContext(hdc); in windows_call_with_context() local
322 wglMakeCurrent(hdc, hglrc); in windows_call_with_context()
329 wglDeleteContext(hglrc); in windows_call_with_context()
/external/deqp/framework/platform/win32/
DtcuWGL.cpp116 typedef BOOL (WINAPI* wglDeleteContextFunc) (HGLRC hglrc);
117 typedef BOOL (WINAPI* wglMakeCurrentFunc) (HDC hdc, HGLRC hglrc);
/external/swiftshader/src/OpenGL/libGL/
DlibGL.cpp8193 BOOL WINAPI wglMakeCurrent(HDC hdc, HGLRC hglrc) in wglMakeCurrent() argument
8197 if(hdc && hglrc) in wglMakeCurrent()
8200 gl::makeCurrent((gl::Context*)hglrc, display, display->getPrimarySurface()); in wglMakeCurrent()