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

1 2

  /external/chromium_org/third_party/skia/include/utils/
SkWGL.h 74 HGLRC createContextAttribs(HDC, HGLRC, const int *) const;
98 typedef HGLRC (WINAPI *CreateContextAttribsProc)(HDC hDC, HGLRC, const int *);
113 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool preferCoreProfile);
  /external/skia/include/utils/
SkWGL.h 74 HGLRC createContextAttribs(HDC, HGLRC, const int *) const;
98 typedef HGLRC (WINAPI *CreateContextAttribsProc)(HDC hDC, HGLRC, const int *);
113 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool preferCoreProfile);
  /external/chromium_org/ui/gl/
gl_context_wgl.h 35 HGLRC context_;
gl_context_wgl.cc 44 HGLRC share_handle = static_cast<HGLRC>(share_group()->GetHandle());
  /external/chromium_org/third_party/mesa/src/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...]
  /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...]
  /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);
  /external/chromium_org/third_party/skia/include/gpu/gl/
SkNativeGLContext.h 53 HGLRC fOldHGLRC;
79 HGLRC fGlRenderContext;
  /external/skia/include/gpu/gl/
SkNativeGLContext.h 53 HGLRC fOldHGLRC;
79 HGLRC fGlRenderContext;
  /sdk/emulator/opengl/host/libs/Translator/include/EGL/
eglinternalplatform.h 38 typedef HGLRC EGLNativeContextType;
  /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/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/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/chromium_org/third_party/skia/src/utils/win/
SkWGL_win.cpp 72 HGLRC SkWGLExtensions::createContextAttribs(HDC hDC,
73 HGLRC hShareContext,
212 HGLRC prevGLRC = wglGetCurrentContext();
230 HGLRC dummyGLRC = wglCreateContext(dummyDC);
248 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool preferCoreProfile) {
255 HGLRC prevGLRC = wglGetCurrentContext();
309 HGLRC glrc = NULL;
  /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/utils/win/
SkWGL_win.cpp 72 HGLRC SkWGLExtensions::createContextAttribs(HDC hDC,
73 HGLRC hShareContext,
212 HGLRC prevGLRC = wglGetCurrentContext();
230 HGLRC dummyGLRC = wglCreateContext(dummyDC);
248 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool preferCoreProfile) {
255 HGLRC prevGLRC = wglGetCurrentContext();
309 HGLRC glrc = NULL;
  /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...]
  /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

Completed in 733 milliseconds

1 2