• Home
  • Raw
  • Download

Lines Matching refs:HDC

64     bool hasExtension(HDC dc, const char* ext) const;
66 const char* getExtensionsString(HDC hdc) const;
67 BOOL choosePixelFormat(HDC hdc, const int*, const FLOAT*, UINT, int*, UINT*) const;
68 BOOL getPixelFormatAttribiv(HDC, int, int, UINT, const int*, int*) const;
69 BOOL getPixelFormatAttribfv(HDC hdc, int, int, UINT, const int*, FLOAT*) const;
70 HGLRC createContextAttribs(HDC, HGLRC, const int *) const;
74 HPBUFFER createPbuffer(HDC, int , int, int, const int*) const;
75 HDC getPbufferDC(HPBUFFER) const;
76 int releasePbufferDC(HPBUFFER, HDC) const;
95 HDC dc,
98 typedef const char* (WINAPI *GetExtensionsStringProc)(HDC);
99 …typedef BOOL (WINAPI *ChoosePixelFormatProc)(HDC, const int *, const FLOAT *, UINT, int *, UINT *);
100 typedef BOOL (WINAPI *GetPixelFormatAttribivProc)(HDC, int, int, UINT, const int*, int*);
101 typedef BOOL (WINAPI *GetPixelFormatAttribfvProc)(HDC, int, int, UINT, const int*, FLOAT*);
102 typedef HGLRC (WINAPI *CreateContextAttribsProc)(HDC, HGLRC, const int *);
104 typedef HPBUFFER (WINAPI* CreatePbufferProc)(HDC, int , int, int, const int*);
105 typedef HDC (WINAPI* GetPbufferDCProc)(HPBUFFER);
106 typedef int (WINAPI* ReleasePbufferDCProc)(HPBUFFER, HDC);
138 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool deepColor, SkWGLContextRequest context,
148 static sk_sp<SkWGLPbufferContext> Create(HDC parentDC, SkWGLContextRequest contextType,
153 HDC getDC() const { return fDC; } in getDC()
157 SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc);
160 HDC fDC;