aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llwindow/GL/glh_extensions.h
blob: ce2865bbb45afd6f075461e99f73d24a639395f7 (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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
 *  glh_extensions.h
 *  From nVidia Corporation, downloaded 2006-12-18 from:
 *  http://developer.nvidia.com/attach/8196
 *  ("NVParse Library with Source (.zip) (2390 KB)")
 *
 *  License (quoted from license_info.txt in aforementioned file):
 *  "The files bison.exe, bison.simple, and flex.exe are covered by
 *  the GPL.  All other files in this distribution can be used however
 *  you want."
 */

#ifndef GLH_EXTENSIONS
#define GLH_EXTENSIONS

#include <string.h>
#include <stdio.h>

#ifdef _WIN32
#	define WIN32_LEAN_AND_MEAN
#	include <winsock2.h>
# include <windows.h>
#endif

#ifndef __APPLE__
#include <GL/gl.h>
#endif

#ifdef _WIN32
# include "GL/wglext.h"
#endif

#define CHECK_MEMORY(ptr) \
    if (NULL == ptr) { \
		printf("Error allocating memory in file %s, line %d\n", __FILE__, __LINE__); \
		exit(-1); \
	}

#ifdef GLH_EXT_SINGLE_FILE
#  define GLH_EXTENSIONS_SINGLE_FILE  // have to do this because glh_genext.h unsets GLH_EXT_SINGLE_FILE
#endif

#include "glh_genext.h"

#ifdef __cplusplus
extern "C" {
#endif

#ifdef GLH_EXTENSIONS_SINGLE_FILE

class GLHExts
{
public:
	GLHExts()
	{
		mSysExts = NULL;
//		mUnsupportedExts = NULL;
	}
	~GLHExts()
	{
		if (mSysExts)
		{
			free(mSysExts);
		}
//		if (mUnsupportedExts)
//		{
//			free(mUnsupportedExts);
//		}
	}
	char *mSysExts;
//	char *mUnsupportedExts;
};

GLHExts gGLHExts;

static int ExtensionExists(const char* extName, const char* sysExts)
{
    char *padExtName = (char*)malloc(strlen(extName) + 2);
    strcat(strcpy(padExtName, extName), " ");

	if (0 == strcmp(extName, "GL_VERSION_1_2")) {
		const char *version = (const char*)glGetString(GL_VERSION);
		if (strstr(version, "1.0") == version || strstr(version, "1.1") == version) {
			return FALSE;
		} else {
			return TRUE;
		}
	}
    if (strstr(sysExts, padExtName)) {
		free(padExtName);
        return TRUE;
    } else {
		free(padExtName);
        return FALSE;
    }
}

static const char* EatWhiteSpace(const char *str)
{
	for (; *str && (' ' == *str || '\t' == *str || '\n' == *str); str++);
	return str;
}

static const char* EatNonWhiteSpace(const char *str)
{
	for (; *str && (' ' != *str && '\t' != *str && '\n' != *str); str++);
	return str;
}


int glh_init_extensions(const char *origReqExts)
{
	// Length of requested extensions string
	/*
	unsigned reqExtsLen;
	*/
	char *reqExts;
	// Ptr for individual extensions within reqExts
	char *reqExt;
	int success = TRUE;

	// build space-padded extension string
	if (NULL == gGLHExts.mSysExts) {
		const char *extensions = (const char*)glGetString(GL_EXTENSIONS);
		int sysExtsLen = (int)strlen(extensions);
		const char *winsys_extensions = 0;		
		int winsysExtsLen = 0;
#ifdef _WIN32
		{
			PFNWGLGETEXTENSIONSSTRINGARBPROC wglGetExtensionsStringARB = 0;
			wglGetExtensionsStringARB = (PFNWGLGETEXTENSIONSSTRINGARBPROC)wglGetProcAddress("wglGetExtensionsStringARB");
			if(wglGetExtensionsStringARB)
			{
				winsys_extensions = wglGetExtensionsStringARB(wglGetCurrentDC());
				winsysExtsLen = (S32)strlen(winsys_extensions);
			}
		}
#endif
		// Add 2 bytes, one for padding space, one for terminating NULL
		gGLHExts.mSysExts = (char*)malloc(sysExtsLen + winsysExtsLen + 3);
		CHECK_MEMORY(gGLHExts.mSysExts);
		strcpy(gGLHExts.mSysExts, extensions);
		gGLHExts.mSysExts[sysExtsLen] = ' ';
		gGLHExts.mSysExts[sysExtsLen + 1] = 0;
		if (winsysExtsLen)
		{
			strcat(gGLHExts.mSysExts, winsys_extensions);
		}
		gGLHExts.mSysExts[sysExtsLen + 1 + winsysExtsLen] = ' ';
		gGLHExts.mSysExts[sysExtsLen + 1 + winsysExtsLen + 1] = 0;
	}

	if (NULL == origReqExts)
	{
		return TRUE;
	}
	reqExts = strdup(origReqExts);
	/*
	reqExtsLen = (S32)strlen(reqExts);
	if (NULL == gGLHExts.mUnsupportedExts)
	{
		gGLHExts.mUnsupportedExts = (char*)malloc(reqExtsLen + 1);
	}
	else if (reqExtsLen > strlen(gGLHExts.mUnsupportedExts))
	{
		gGLHExts.mUnsupportedExts = (char*)realloc(gGLHExts.mUnsupportedExts, reqExtsLen + 1);
	}
	CHECK_MEMORY(gGLHExts.mUnsupportedExts);
	*gGLHExts.mUnsupportedExts = 0;
	*/

	// Parse requested extension list
	for (reqExt = reqExts;
		(reqExt = (char*)EatWhiteSpace(reqExt)) && *reqExt;
		reqExt = (char*)EatNonWhiteSpace(reqExt))
	{
		char *extEnd = (char*)EatNonWhiteSpace(reqExt);
		char saveChar = *extEnd;
		*extEnd = (char)0;
		
		if (!ExtensionExists(reqExt, gGLHExts.mSysExts) ||
			!glh_init_extension(reqExt)) {
			/*
			// add reqExt to end of unsupportedExts
			strcat(gGLHExts.mUnsupportedExts, reqExt);
			strcat(gGLHExts.mUnsupportedExts, " ");
			*/
			success = FALSE;
		}
		*extEnd = saveChar;
	}
	free(reqExts);
	return success;
}

const char* glh_get_unsupported_extensions()
{
	return "";
//	return (const char*)gGLHExts.mUnsupportedExts;
}

#else
int glh_init_extensions(const char *origReqExts);
const char* glh_get_unsupported_extensions();
#endif /* GLH_EXT_SINGLE_FILE */

#ifdef __cplusplus
}
#endif

#endif /* GLH_EXTENSIONS */