Home | History | Annotate | Download | only in win

Lines Matching refs:hDC

18 bool SkWGLExtensions::hasExtension(HDC dc, const char* ext) const {
42 const char* SkWGLExtensions::getExtensionsString(HDC hdc) const {
43 return fGetExtensionsString(hdc);
46 BOOL SkWGLExtensions::choosePixelFormat(HDC hdc,
52 return fChoosePixelFormat(hdc, piAttribIList, pfAttribFList,
56 BOOL SkWGLExtensions::getPixelFormatAttribiv(HDC hdc,
62 return fGetPixelFormatAttribiv(hdc, iPixelFormat, iLayerPlane,
66 BOOL SkWGLExtensions::getPixelFormatAttribfv(HDC hdc,
72 return fGetPixelFormatAttribfv(hdc, iPixelFormat, iLayerPlane,
75 HGLRC SkWGLExtensions::createContextAttribs(HDC hDC,
78 return fCreateContextAttribs(hDC, hShareContext, attribList);
85 HPBUFFER SkWGLExtensions::createPbuffer(HDC hDC,
90 return fCreatePbuffer(hDC, iPixelFormat, iWidth, iHeight, piAttribList);
93 HDC SkWGLExtensions::getPbufferDC(HPBUFFER hPbuffer) const {
97 int SkWGLExtensions::releasePbufferDC(HPBUFFER hPbuffer, HDC hDC) const {
98 return fReleasePbufferDC(hPbuffer, hDC);
127 HDC dc,
247 HDC prevDC = wglGetCurrentDC();
263 HDC dummyDC = GetDC(dummyWND);
291 static void get_pixel_formats_to_try(HDC dc, const SkWGLExtensions& extensions,
334 static HGLRC create_gl_context(HDC dc, SkWGLExtensions extensions, SkWGLContextRequest contextType) {
335 HDC prevDC = wglGetCurrentDC();
397 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, SkWGLContextRequest contextType) {
421 SkWGLPbufferContext* SkWGLPbufferContext::Create(HDC parentDC, int msaaSampleCount,
437 HDC dc = extensions.getPbufferDC(pbuf);
459 SkWGLPbufferContext::SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc)