Lines Matching defs:const
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;
72 BOOL swapInterval(int interval) const;
74 HPBUFFER createPbuffer(HDC, int , int, int, const int*) const;
75 HDC getPbufferDC(HPBUFFER) const;
76 int releasePbufferDC(HPBUFFER, HDC) const;
77 BOOL destroyPbuffer(HPBUFFER) const;
93 int selectFormat(const int formats[],
96 int desiredSampleCount) const;
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*);
153 HDC getDC() const { return fDC; }
154 HGLRC getGLRC() const { return fGLRC; }