JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
WGL.cpp
Go to the documentation of this file.
1
6#include "WGL.h"
7
8
9#ifdef ENABLE_OPENGL
10
11using namespace jbxl;
12using namespace jbxwl;
13
14
15
16/*
17 機能:
18 引数:
19 戻値:
20 説明:
21*/
22HGLRC jbxwl::WGLCreateContext(CDC* pDC, PIXELFORMATDESCRIPTOR* param)
23{
24 HGLRC hrc = NULL;
25 BOOL ret = FALSE;
26
27 //
28 int pixelformat = ::ChoosePixelFormat(pDC->GetSafeHdc(), param);
29 if (pixelformat) ret = ::SetPixelFormat(pDC->GetSafeHdc(), pixelformat, param);
30
31 if (ret) {
32 hrc = ::wglCreateContext(pDC->GetSafeHdc());
33 if (hrc) {
34 ret = ::wglMakeCurrent(pDC->GetSafeHdc(), hrc);
35 if (!ret) {
36 ::wglDeleteContext(hrc);
37 hrc = NULL;
38 }
39 }
40 }
41 return hrc;
42}
43
44
45
46
47BOOL jbxwl::WGLGetCurrent(CDC* pDC, HGLRC hrc)
48{
49 return ::wglMakeCurrent(pDC->GetSafeHdc(), hrc);
50}
51
52
53
54
55
56void jbxwl::WGLDeleteContext(HGLRC hrc)
57{
58 ::wglMakeCurrent(NULL, NULL);
59 ::wglDeleteContext(hrc);
60}
61
62
63
64#endif // ENABLE_OPENGL
65
66
67
68
69