summaryrefslogtreecommitdiff
path: root/src/windows/wgl.c
blob: 2bdecd0f229efcc7cd1fcea50ea52222d0ea5245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
Copyright (C) 1997-2001 Id Software, Inc.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "client.h"
#include "glimp.h"
#include "wgl.h"

void (APIENTRY * qwglDrawBuffer)(GLenum mode);
const GLubyte * (APIENTRY * qwglGetString)(GLenum name);

int (WINAPI * qwglChoosePixelFormat)(HDC, CONST PIXELFORMATDESCRIPTOR *);
int (WINAPI * qwglDescribePixelFormat)(HDC, int, UINT, LPPIXELFORMATDESCRIPTOR);
BOOL (WINAPI * qwglSetPixelFormat)(HDC, int, CONST PIXELFORMATDESCRIPTOR *);
BOOL (WINAPI * qwglSwapBuffers)(HDC);

HGLRC (WINAPI * qwglCreateContext)(HDC);
BOOL (WINAPI * qwglDeleteContext)(HGLRC);
PROC (WINAPI * qwglGetProcAddress)(LPCSTR);
BOOL (WINAPI * qwglMakeCurrent)(HDC, HGLRC);

const char * (WINAPI * qwglGetExtensionsStringARB)(HDC hdc);

BOOL (WINAPI * qwglChoosePixelFormatARB)(HDC, const int *, const FLOAT *, UINT, int *, UINT *);

BOOL (WINAPI * qwglSwapIntervalEXT)(int interval);

void WGL_Shutdown(void)
{
    if (glw.hinstOpenGL) {
        FreeLibrary(glw.hinstOpenGL);
        glw.hinstOpenGL = NULL;
    }

    qwglDrawBuffer              = NULL;
    qwglGetString               = NULL;

    qwglChoosePixelFormat       = NULL;
    qwglDescribePixelFormat     = NULL;
    qwglSetPixelFormat          = NULL;
    qwglSwapBuffers             = NULL;

    qwglCreateContext           = NULL;
    qwglDeleteContext           = NULL;
    qwglGetProcAddress          = NULL;
    qwglMakeCurrent             = NULL;

    WGL_ShutdownExtensions(~0);
}

#define GPA(x)  (void *)GetProcAddress(glw.hinstOpenGL, x);

qboolean WGL_Init(const char *dllname)
{
    if ((glw.hinstOpenGL = LoadLibrary(dllname)) == NULL) {
        return qfalse;
    }

    qwglDrawBuffer              = GPA("glDrawBuffer");
    qwglGetString               = GPA("glGetString");

    qwglChoosePixelFormat       = GPA("wglChoosePixelFormat");
    qwglDescribePixelFormat     = GPA("wglDescribePixelFormat");
    qwglSetPixelFormat          = GPA("wglSetPixelFormat");
    qwglSwapBuffers             = GPA("wglSwapBuffers");

    qwglCreateContext           = GPA("wglCreateContext");
    qwglDeleteContext           = GPA("wglDeleteContext");
    qwglGetProcAddress          = GPA("wglGetProcAddress");
    qwglMakeCurrent             = GPA("wglMakeCurrent");

    return qtrue;
}

#undef GPA

void WGL_ShutdownExtensions(unsigned mask)
{
    if (mask & QWGL_ARB_extensions_string) {
        qwglGetExtensionsStringARB  = NULL;
    }
    if (mask & QWGL_ARB_pixel_format) {
        qwglChoosePixelFormatARB    = NULL;
    }
    if (mask & QWGL_EXT_swap_control) {
        qwglSwapIntervalEXT         = NULL;
    }
}

#define GPA(x)  (void *)qwglGetProcAddress(x)

void WGL_InitExtensions(unsigned mask)
{
    if (mask & QWGL_ARB_extensions_string) {
        qwglGetExtensionsStringARB  = GPA("wglGetExtensionsStringARB");
    }
    if (mask & QWGL_ARB_pixel_format) {
        qwglChoosePixelFormatARB    = GPA("wglChoosePixelFormatARB");
    }
    if (mask & QWGL_EXT_swap_control) {
        qwglSwapIntervalEXT         = GPA("wglSwapIntervalEXT");
    }
}

#undef GPA

unsigned WGL_ParseExtensionString(const char *s)
{
    // must match defines in win_wgl.h!
    static const char *const extnames[] = {
        "WGL_ARB_extensions_string",
        "WGL_ARB_multisample",
        "WGL_ARB_pixel_format",
        "WGL_EXT_swap_control",
        "WGL_EXT_swap_control_tear",
        NULL
    };

    return Com_ParseExtensionString(s, extnames);
}