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

  /external/skia/src/utils/win/
SkWGL.h 76 HGLRC createContextAttribs(HDC, HGLRC, const int *) const;
107 typedef HGLRC (WINAPI *CreateContextAttribsProc)(HDC, HGLRC, const int *);
142 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, SkWGLContextRequest context);
157 HGLRC getGLRC() const { return fGLRC; }
160 SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc);
164 HGLRC fGLRC;
SkWGL_win.cpp 75 HGLRC SkWGLExtensions::createContextAttribs(HDC hDC,
76 HGLRC hShareContext,
248 HGLRC prevGLRC = wglGetCurrentContext();
266 HGLRC dummyGLRC = wglCreateContext(dummyDC);
334 static HGLRC create_gl_context(HDC dc, SkWGLExtensions extensions, SkWGLContextRequest contextType) {
336 HGLRC prevGLRC = wglGetCurrentContext();
338 HGLRC glrc = nullptr;
397 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, SkWGLContextRequest contextType) {
439 HGLRC glrc = create_gl_context(dc, extensions, contextType);
459 SkWGLPbufferContext::SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_context.c 35 HGLRC WINAPI
36 wglCreateContextAttribsARB(HDC hDC, HGLRC hShareContext, const int *attribList)
118 return (HGLRC) stw_create_context_attribs(hDC, layerPlane,
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/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/deqp/framework/platform/win32/
tcuWGL.hpp 198 HGLRC getGLContext (void) const { return m_context; }
206 HGLRC m_context;
tcuWGL.cpp 115 typedef HGLRC (WINAPI* wglCreateContextFunc) (HDC hdc);
116 typedef BOOL (WINAPI* wglDeleteContextFunc) (HGLRC hglrc);
117 typedef BOOL (WINAPI* wglMakeCurrentFunc) (HDC hdc, HGLRC hglrc);
127 typedef HGLRC (WINAPI* wglCreateContextAttribsARBFunc) (HDC hdc, HGLRC hshareContext, const int* attribList);
221 HGLRC tmpCtx = m_functions.createContext(tmpWindow.getDeviceContext());
  /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...]
  /external/skia/src/gpu/gl/win/
SkCreatePlatformGLContext_win.cpp 34 HGLRC fGlRenderContext;
92 HGLRC glrc;
156 HGLRC glrc;
  /external/libgdx/extensions/gdx-bullet/jni/vs/Glut/GL/
wglew.h 137 typedef VOID (WINAPI * PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC) (HGLRC dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
138 typedef HGLRC (WINAPI * PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC) (UINT id);
139 typedef HGLRC (WINAPI * PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC) (UINT id, HGLRC hShareContext, const int* attribList);
140 typedef BOOL (WINAPI * PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC) (HGLRC hglrc);
141 typedef UINT (WINAPI * PFNWGLGETCONTEXTGPUIDAMDPROC) (HGLRC hglrc);
142 typedef HGLRC (WINAPI * PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC) (void);
145 typedef BOOL (WINAPI * PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC) (HGLRC hglrc)
    [all...]
wglext.h 328 extern BOOL WINAPI wglMakeContextCurrentARB (HDC, HDC, HGLRC);
331 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
376 extern BOOL WINAPI wglMakeContextCurrentEXT (HDC, HDC, HGLRC);
379 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTEXTPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
  /external/skia/src/views/win/
SkOSWindow_win.cpp 79 wglDeleteContext((HGLRC)fHGLRC);
356 if (wglMakeCurrent(dc, (HGLRC)fHGLRC)) {
387 wglDeleteContext((HGLRC)fHGLRC);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/GL/
glaux.h 258 HGLRC APIENTRY auxGetHGLRC(void);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windef.h 203 DECLARE_HANDLE(HGLRC);
wingdi.h     [all...]
  /external/opencv3/modules/highgui/src/
window_w32.cpp 184 HGLRC hGLRC;
592 void createGlContext(HWND hWnd, HDC& hGLDC, HGLRC& hGLRC, bool& useGl)
635 hGLRC = wglCreateContext(hGLDC);
636 if (!hGLRC)
639 if (!wglMakeCurrent(hGLDC, hGLRC))
653 if (window->hGLRC)
655 wglDeleteContext(window->hGLRC);
656 window->hGLRC = NULL
    [all...]

Completed in 1828 milliseconds