Skip to content

Latest commit

 

History

History
834 lines (686 loc) · 26.2 KB

mojoshader_opengl.c

File metadata and controls

834 lines (686 loc) · 26.2 KB
 
Apr 26, 2008
Apr 26, 2008
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdarg.h>
#include <assert.h>
#include "mojoshader.h"
Apr 27, 2008
Apr 27, 2008
9
10
11
#define GL_GLEXT_LEGACY 1
#include "gl.h"
#include "glext.h"
Apr 26, 2008
Apr 26, 2008
12
13
14
// Get basic wankery out of the way here...
Apr 27, 2008
Apr 27, 2008
15
16
#define STATICARRAYLEN(x) ( (sizeof ((x))) / (sizeof ((x)[0])) )
Apr 26, 2008
Apr 26, 2008
17
18
19
20
21
22
23
24
typedef unsigned int uint; // this is a printf() helper. don't use for code.
typedef uint8_t uint8;
typedef uint32_t uint32;
typedef int32_t int32;
struct MOJOSHADER_glShader
{
const MOJOSHADER_parseData *parseData;
Apr 27, 2008
Apr 27, 2008
25
GLhandleARB handle;
Apr 26, 2008
Apr 26, 2008
26
27
28
uint32 refcount;
};
Apr 27, 2008
Apr 27, 2008
29
30
typedef struct
{
Apr 27, 2008
Apr 27, 2008
31
MOJOSHADER_shaderType shader_type;
Apr 27, 2008
Apr 27, 2008
32
const MOJOSHADER_uniform *uniform;
Apr 27, 2008
Apr 27, 2008
33
GLuint location;
Apr 27, 2008
Apr 27, 2008
34
35
} UniformMap;
Apr 27, 2008
Apr 27, 2008
36
37
typedef struct
{
Apr 27, 2008
Apr 27, 2008
38
const MOJOSHADER_attribute *attribute;
Apr 27, 2008
Apr 27, 2008
39
GLuint location;
Apr 27, 2008
Apr 27, 2008
40
41
} AttributeMap;
Apr 26, 2008
Apr 26, 2008
42
43
struct MOJOSHADER_glProgram
{
Apr 27, 2008
Apr 27, 2008
44
45
MOJOSHADER_glShader *vertex;
MOJOSHADER_glShader *fragment;
Apr 27, 2008
Apr 27, 2008
46
GLhandleARB handle;
Apr 27, 2008
Apr 27, 2008
47
uint32 uniform_count;
Apr 27, 2008
Apr 27, 2008
48
UniformMap *uniforms;
Apr 27, 2008
Apr 27, 2008
49
uint32 attribute_count;
Apr 27, 2008
Apr 27, 2008
50
AttributeMap *attributes;
Apr 26, 2008
Apr 26, 2008
51
52
53
uint32 refcount;
};
Apr 28, 2008
Apr 28, 2008
54
// A few entry points in base OpenGL that lack function pointer prototypes...
Apr 28, 2008
Apr 28, 2008
55
56
57
58
59
typedef WINGDIAPI const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC) (GLenum name);
typedef WINGDIAPI void (APIENTRYP PFNGLDISABLECLIENTSTATEPROC) (GLenum array);
typedef WINGDIAPI void (APIENTRYP PFNGLENABLECLIENTSTATEPROC) (GLenum array);
typedef WINGDIAPI void (APIENTRYP PFNGLVERTEXPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
Apr 28, 2008
Apr 28, 2008
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
struct MOJOSHADER_glContext
{
// Allocators...
MOJOSHADER_malloc malloc_fn;
MOJOSHADER_free free_fn;
void *malloc_data;
// The constant register files...
// Man, it kills me how much memory this takes...
float vs_reg_file_f[8192 * 4];
int vs_reg_file_i[2047 * 4];
uint8 vs_reg_file_b[2047];
float ps_reg_file_f[8192 * 4];
int ps_reg_file_i[2047 * 4];
uint8 ps_reg_file_b[2047];
// GL stuff...
int opengl_major;
int opengl_minor;
MOJOSHADER_glProgram *bound_program;
const char *profile;
// Extensions...
int have_base_opengl;
int have_GL_ARB_shader_objects;
int have_GL_ARB_vertex_shader;
int have_GL_ARB_fragment_shader;
int have_GL_ARB_shading_language_100;
int have_GL_NV_half_float;
// Entry points...
PFNGLGETSTRINGPROC glGetString;
PFNGLDELETEOBJECTARBPROC glDeleteObject;
PFNGLATTACHOBJECTARBPROC glAttachObject;
PFNGLCOMPILESHADERARBPROC glCompileShader;
PFNGLCREATEPROGRAMOBJECTARBPROC glCreateProgramObject;
PFNGLCREATESHADEROBJECTARBPROC glCreateShaderObject;
PFNGLDISABLECLIENTSTATEPROC glDisableClientState;
PFNGLDISABLEVERTEXATTRIBARRAYARBPROC glDisableVertexAttribArray;
PFNGLENABLECLIENTSTATEPROC glEnableClientState;
PFNGLENABLEVERTEXATTRIBARRAYARBPROC glEnableVertexAttribArray;
PFNGLGETATTRIBLOCATIONARBPROC glGetAttribLocation;
PFNGLGETINFOLOGARBPROC glGetInfoLog;
PFNGLGETOBJECTPARAMETERIVARBPROC glGetObjectParameteriv;
PFNGLGETUNIFORMLOCATIONARBPROC glGetUniformLocation;
PFNGLLINKPROGRAMARBPROC glLinkProgram;
PFNGLSHADERSOURCEARBPROC glShaderSource;
PFNGLUNIFORM1IARBPROC glUniform1i;
PFNGLUNIFORM4FVARBPROC glUniform4fv;
PFNGLUNIFORM4IVARBPROC glUniform4iv;
PFNGLUSEPROGRAMOBJECTARBPROC glUseProgramObject;
PFNGLVERTEXATTRIBPOINTERARBPROC glVertexAttribPointer;
PFNGLVERTEXPOINTERPROC glVertexPointer;
};
static MOJOSHADER_glContext *ctx = NULL;
Apr 28, 2008
Apr 28, 2008
116
Apr 26, 2008
Apr 26, 2008
117
Apr 27, 2008
Apr 27, 2008
118
119
120
121
122
123
124
125
// Error state...
static char error_buffer[1024] = { '\0' };
static void set_error(const char *str)
{
snprintf(error_buffer, sizeof (error_buffer), "%s", str);
} // set_error
Apr 26, 2008
Apr 26, 2008
126
127
128
129
130
131
132
133
134
135
136
137
138
// #define this to force app to supply an allocator, so there's no reference
// to the C runtime's malloc() and free()...
#if MOJOSHADER_FORCE_ALLOCATOR
#define internal_malloc NULL
#define internal_free NULL
#else
static void *internal_malloc(int bytes, void *d) { return malloc(bytes); }
static void internal_free(void *ptr, void *d) { free(ptr); }
#endif
static inline void *Malloc(const size_t len)
{
Apr 28, 2008
Apr 28, 2008
139
void *retval = ctx->malloc_fn(len, ctx->malloc_data);
Apr 27, 2008
Apr 27, 2008
140
141
142
if (retval == NULL)
set_error("out of memory");
return retval;
Apr 26, 2008
Apr 26, 2008
143
144
145
146
} // Malloc
static inline void Free(void *ptr)
{
Apr 27, 2008
Apr 27, 2008
147
if (ptr != NULL)
Apr 28, 2008
Apr 28, 2008
148
ctx->free_fn(ptr, ctx->malloc_data);
Apr 26, 2008
Apr 26, 2008
149
150
151
} // Free
Apr 27, 2008
Apr 27, 2008
152
153
154
155
156
157
const char *MOJOSHADER_glGetError(void)
{
return error_buffer;
} // MOJOSHADER_glGetError
Apr 28, 2008
Apr 28, 2008
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
static void *loadsym(void *(*lookup)(const char *fn), const char *fn, int *ext)
{
void *retval = NULL;
if (lookup != NULL)
{
retval = lookup(fn);
if (retval == NULL)
{
char arbfn[64];
snprintf(arbfn, sizeof (arbfn), "%sARB", fn);
retval = lookup(arbfn);
} // if
} // if
if (retval == NULL)
*ext = 0;
return retval;
} // loadsym
static void lookup_entry_points(void *(*lookup)(const char *fnname))
{
Apr 28, 2008
Apr 28, 2008
180
#define DO_LOOKUP(ext, typ, fn) ctx->fn = (typ) loadsym(lookup, #fn, &ctx->have_##ext)
Apr 28, 2008
Apr 28, 2008
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
212
213
DO_LOOKUP(base_opengl, PFNGLGETSTRINGPROC, glGetString);
DO_LOOKUP(base_opengl, PFNGLDISABLECLIENTSTATEPROC, glDisableClientState);
DO_LOOKUP(base_opengl, PFNGLENABLECLIENTSTATEPROC, glEnableClientState);
DO_LOOKUP(base_opengl, PFNGLVERTEXPOINTERPROC, glVertexPointer);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLDELETEOBJECTARBPROC, glDeleteObject);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLATTACHOBJECTARBPROC, glAttachObject);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLCOMPILESHADERARBPROC, glCompileShader);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLCREATEPROGRAMOBJECTARBPROC, glCreateProgramObject);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLCREATESHADEROBJECTARBPROC, glCreateShaderObject);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLGETINFOLOGARBPROC, glGetInfoLog);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLGETOBJECTPARAMETERIVARBPROC, glGetObjectParameteriv);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLGETUNIFORMLOCATIONARBPROC, glGetUniformLocation);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLLINKPROGRAMARBPROC, glLinkProgram);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLSHADERSOURCEARBPROC, glShaderSource);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLUNIFORM1IARBPROC, glUniform1i);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLUNIFORM4FVARBPROC, glUniform4fv);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLUNIFORM4IVARBPROC, glUniform4iv);
DO_LOOKUP(GL_ARB_shader_objects, PFNGLUSEPROGRAMOBJECTARBPROC, glUseProgramObject);
DO_LOOKUP(GL_ARB_vertex_shader, PFNGLDISABLEVERTEXATTRIBARRAYARBPROC, glDisableVertexAttribArray);
DO_LOOKUP(GL_ARB_vertex_shader, PFNGLENABLEVERTEXATTRIBARRAYARBPROC, glEnableVertexAttribArray);
DO_LOOKUP(GL_ARB_vertex_shader, PFNGLGETATTRIBLOCATIONARBPROC, glGetAttribLocation);
DO_LOOKUP(GL_ARB_vertex_shader, PFNGLVERTEXATTRIBPOINTERARBPROC, glVertexAttribPointer);
#undef DO_LOOKUP
} // lookup_entry_points
static int verify_extension(const char *ext, int have, const char *extlist,
int major, int minor)
{
if (have == 0)
return 0; // don't bother checking, we're missing an entry point.
// See if it's in the spec for this GL implementation's version.
Apr 28, 2008
Apr 28, 2008
214
215
if (major >= 0)
{
Apr 28, 2008
Apr 28, 2008
216
if ( ((ctx->opengl_major << 16) | (ctx->opengl_minor & 0xFFFF)) >=
Apr 28, 2008
Apr 28, 2008
217
218
219
((major << 16) | (minor & 0xFFFF)) )
return 1;
} // if
Apr 28, 2008
Apr 28, 2008
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Not available in the GL version, check the extension list.
const char *ptr = strstr(extlist, ext);
if (ptr == NULL)
return 0;
const char endchar = ptr[strlen(ext)];
if ((endchar == '\0') || (endchar == ' '))
return 1; // extension is in the list.
return 0; // just not supported, fail.
} // verify_extension
static void parse_opengl_version(const char *verstr)
{
if (verstr == NULL)
Apr 28, 2008
Apr 28, 2008
237
ctx->opengl_major = ctx->opengl_minor = 0;
Apr 28, 2008
Apr 28, 2008
238
else
Apr 28, 2008
Apr 28, 2008
239
sscanf(verstr, "%d.%d", &ctx->opengl_major, &ctx->opengl_minor);
Apr 28, 2008
Apr 28, 2008
240
241
242
243
244
} // parse_opengl_version
static int check_extensions(void *(*lookup)(const char *fnname))
{
Apr 28, 2008
Apr 28, 2008
245
246
247
248
249
250
ctx->have_base_opengl = 1;
ctx->have_GL_ARB_shader_objects = 1;
ctx->have_GL_ARB_vertex_shader = 1;
ctx->have_GL_ARB_fragment_shader = 1;
ctx->have_GL_ARB_shading_language_100 = 1;
ctx->have_GL_NV_half_float = 1;
Apr 28, 2008
Apr 28, 2008
251
252
253
lookup_entry_points(lookup);
Apr 28, 2008
Apr 28, 2008
254
if (!ctx->have_base_opengl) // a func we should definitely have is MIA?
Apr 28, 2008
Apr 28, 2008
255
256
257
258
259
{
set_error("missing basic OpenGL entry points");
return 0;
} // if
Apr 28, 2008
Apr 28, 2008
260
parse_opengl_version((const char *) ctx->glGetString(GL_VERSION));
Apr 28, 2008
Apr 28, 2008
261
Apr 28, 2008
Apr 28, 2008
262
const char *extlist = (const char *) ctx->glGetString(GL_EXTENSIONS);
Apr 28, 2008
Apr 28, 2008
263
264
265
266
if (extlist == NULL)
extlist = ""; // just in case.
#define VERIFY_EXT(ext, major, minor) \
Apr 28, 2008
Apr 28, 2008
267
ctx->have_##ext = verify_extension(#ext, ctx->have_##ext, extlist, major, minor)
Apr 28, 2008
Apr 28, 2008
268
269
270
271
272
VERIFY_EXT(GL_ARB_shader_objects, 2, 0);
VERIFY_EXT(GL_ARB_vertex_shader, 2, 0);
VERIFY_EXT(GL_ARB_fragment_shader, 2, 0);
VERIFY_EXT(GL_ARB_shading_language_100, 2, 0);
Apr 28, 2008
Apr 28, 2008
273
VERIFY_EXT(GL_NV_half_float, -1, -1);
Apr 28, 2008
Apr 28, 2008
274
275
276
277
#undef VERIFY_EXT
#define REQUIRE_GL_EXTENSION(x) \
Apr 28, 2008
Apr 28, 2008
278
if (!ctx->have_##x) { set_error("profile requires " #x); return 0; }
Apr 28, 2008
Apr 28, 2008
279
Apr 28, 2008
Apr 28, 2008
280
if (strcmp(ctx->profile, MOJOSHADER_PROFILE_GLSL) == 0)
Apr 28, 2008
Apr 28, 2008
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
{
REQUIRE_GL_EXTENSION(GL_ARB_shader_objects);
REQUIRE_GL_EXTENSION(GL_ARB_vertex_shader);
REQUIRE_GL_EXTENSION(GL_ARB_fragment_shader);
REQUIRE_GL_EXTENSION(GL_ARB_shading_language_100);
} // if
else
{
set_error("unknown profile");
return 0;
} // else
#undef REQUIRE_GL_EXTENSION
return 1;
} // check_extensions
Apr 28, 2008
Apr 28, 2008
300
MOJOSHADER_glContext *MOJOSHADER_glCreateContext(const char *_profile,
Apr 28, 2008
Apr 28, 2008
301
302
303
void *(*lookup)(const char *fnname),
MOJOSHADER_malloc m, MOJOSHADER_free f,
void *d)
Apr 26, 2008
Apr 26, 2008
304
{
Apr 28, 2008
Apr 28, 2008
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
MOJOSHADER_glContext *current_ctx = ctx;
ctx = NULL;
if (m == NULL) m = internal_malloc;
if (f == NULL) f = internal_free;
ctx = (MOJOSHADER_glContext *) m(sizeof (MOJOSHADER_glContext), d);
if (ctx == NULL)
{
set_error("out of memory");
goto init_fail;
} // if
MOJOSHADER_glContext *retval = ctx;
memset(ctx, '\0', sizeof (MOJOSHADER_glContext));
ctx->malloc_fn = m;
ctx->free_fn = f;
ctx->malloc_data = d;
Apr 27, 2008
Apr 27, 2008
324
Apr 28, 2008
Apr 28, 2008
325
if (strcmp(_profile, MOJOSHADER_PROFILE_GLSL) == 0)
Apr 28, 2008
Apr 28, 2008
326
ctx->profile = MOJOSHADER_PROFILE_GLSL;
Apr 26, 2008
Apr 26, 2008
327
else
Apr 27, 2008
Apr 27, 2008
328
329
{
set_error("unknown profile");
Apr 28, 2008
Apr 28, 2008
330
goto init_fail;
Apr 27, 2008
Apr 27, 2008
331
} // else
Apr 26, 2008
Apr 26, 2008
332
Apr 28, 2008
Apr 28, 2008
333
334
if (!check_extensions(lookup))
goto init_fail;
Apr 26, 2008
Apr 26, 2008
335
336
337
MOJOSHADER_glBindProgram(NULL);
Apr 28, 2008
Apr 28, 2008
338
339
ctx = current_ctx;
return retval;
Apr 28, 2008
Apr 28, 2008
340
341
init_fail:
Apr 28, 2008
Apr 28, 2008
342
343
344
345
if (ctx != NULL)
f(ctx, d);
ctx = current_ctx;
return NULL;
Apr 28, 2008
Apr 28, 2008
346
} // MOJOSHADER_glCreateContext
Apr 26, 2008
Apr 26, 2008
347
348
Apr 28, 2008
Apr 28, 2008
349
350
351
352
353
354
void MOJOSHADER_glMakeContextCurrent(MOJOSHADER_glContext *_ctx)
{
ctx = _ctx;
} // MOJOSHADER_glMakeContextCurrent
Apr 26, 2008
Apr 26, 2008
355
356
357
358
MOJOSHADER_glShader *MOJOSHADER_glCompileShader(const unsigned char *tokenbuf,
const unsigned int bufsize)
{
MOJOSHADER_glShader *retval = NULL;
Apr 27, 2008
Apr 27, 2008
359
GLhandleARB shader = 0;
Apr 28, 2008
Apr 28, 2008
360
361
362
363
const MOJOSHADER_parseData *pd = MOJOSHADER_parse(ctx->profile, tokenbuf,
bufsize, ctx->malloc_fn,
ctx->free_fn,
ctx->malloc_data);
Apr 26, 2008
Apr 26, 2008
364
if (pd->error != NULL)
Apr 27, 2008
Apr 27, 2008
365
366
{
set_error(pd->error);
Apr 27, 2008
Apr 27, 2008
367
goto compile_shader_fail;
Apr 27, 2008
Apr 27, 2008
368
} // if
Apr 26, 2008
Apr 26, 2008
369
370
371
retval = (MOJOSHADER_glShader *) Malloc(sizeof (MOJOSHADER_glShader));
if (retval == NULL)
Apr 27, 2008
Apr 27, 2008
372
373
goto compile_shader_fail;
Apr 26, 2008
Apr 26, 2008
374
GLint ok = 0;
Apr 28, 2008
Apr 28, 2008
375
const GLenum shader_type = (pd->shader_type == MOJOSHADER_TYPE_PIXEL) ? GL_FRAGMENT_SHADER : GL_VERTEX_SHADER;
Apr 26, 2008
Apr 26, 2008
376
GLint shaderlen = (GLint) pd->output_len;
Apr 28, 2008
Apr 28, 2008
377
shader = ctx->glCreateShaderObject(shader_type);
Apr 26, 2008
Apr 26, 2008
378
Apr 28, 2008
Apr 28, 2008
379
380
381
ctx->glShaderSource(shader, 1, (const GLchar **) &pd->output, &shaderlen);
ctx->glCompileShader(shader);
ctx->glGetObjectParameteriv(shader, GL_OBJECT_COMPILE_STATUS_ARB, &ok);
Apr 26, 2008
Apr 26, 2008
382
383
384
385
if (!ok)
{
GLsizei len = 0;
Apr 28, 2008
Apr 28, 2008
386
ctx->glGetInfoLog(shader, sizeof (error_buffer), &len, (GLchar *) error_buffer);
Apr 27, 2008
Apr 27, 2008
387
goto compile_shader_fail;
Apr 26, 2008
Apr 26, 2008
388
389
390
391
392
393
} // if
retval->parseData = pd;
retval->handle = shader;
retval->refcount = 1;
return retval;
Apr 27, 2008
Apr 27, 2008
394
395
396
397
398
compile_shader_fail:
MOJOSHADER_freeParseData(pd);
Free(retval);
if (shader != 0)
Apr 28, 2008
Apr 28, 2008
399
ctx->glDeleteObject(shader);
Apr 27, 2008
Apr 27, 2008
400
return NULL;
Apr 26, 2008
Apr 26, 2008
401
402
403
404
405
406
407
} // MOJOSHADER_glCompileShader
static void shader_unref(MOJOSHADER_glShader *shader)
{
if (shader != NULL)
{
Apr 27, 2008
Apr 27, 2008
408
const uint32 refcount = shader->refcount;
Apr 26, 2008
Apr 26, 2008
409
if (refcount > 1)
Apr 27, 2008
Apr 27, 2008
410
shader->refcount--;
Apr 26, 2008
Apr 26, 2008
411
412
else
{
Apr 28, 2008
Apr 28, 2008
413
ctx->glDeleteObject(shader->handle);
Apr 26, 2008
Apr 26, 2008
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
MOJOSHADER_freeParseData(shader->parseData);
Free(shader);
} // else
} // if
} // shader_unref
static void program_unref(MOJOSHADER_glProgram *program)
{
if (program != NULL)
{
const uint32 refcount = program->refcount;
if (refcount > 1)
program->refcount--;
else
{
Apr 28, 2008
Apr 28, 2008
430
ctx->glDeleteObject(program->handle);
Apr 26, 2008
Apr 26, 2008
431
432
shader_unref(program->vertex);
shader_unref(program->fragment);
Apr 27, 2008
Apr 27, 2008
433
Free(program->attributes);
Apr 27, 2008
Apr 27, 2008
434
Free(program->uniforms);
Apr 26, 2008
Apr 26, 2008
435
436
437
438
439
440
Free(program);
} // else
} // if
} // program_unref
Apr 27, 2008
Apr 27, 2008
441
442
443
444
445
static void lookup_uniforms(MOJOSHADER_glProgram *program,
MOJOSHADER_glShader *shader)
{
int i;
const MOJOSHADER_parseData *pd = shader->parseData;
Apr 27, 2008
Apr 27, 2008
446
const MOJOSHADER_uniform *u = pd->uniforms;
Apr 27, 2008
Apr 27, 2008
447
const MOJOSHADER_shaderType shader_type = pd->shader_type;
Apr 27, 2008
Apr 27, 2008
448
449
450
for (i = 0; i < pd->uniform_count; i++)
{
Apr 28, 2008
Apr 28, 2008
451
const GLint loc = ctx->glGetUniformLocation(program->handle, u[i].name);
Apr 27, 2008
Apr 27, 2008
452
453
454
if (loc != -1) // maybe the Uniform was optimized out?
{
UniformMap *map = &program->uniforms[program->uniform_count];
Apr 27, 2008
Apr 27, 2008
455
map->shader_type = shader_type;
Apr 27, 2008
Apr 27, 2008
456
map->uniform = &u[i];
Apr 27, 2008
Apr 27, 2008
457
map->location = (GLuint) loc;
Apr 27, 2008
Apr 27, 2008
458
459
460
461
462
463
program->uniform_count++;
} // if
} // for
} // lookup_uniforms
Apr 27, 2008
Apr 27, 2008
464
465
466
467
static void lookup_attributes(MOJOSHADER_glProgram *program)
{
int i;
const MOJOSHADER_parseData *pd = program->vertex->parseData;
Apr 27, 2008
Apr 27, 2008
468
const MOJOSHADER_attribute *a = pd->attributes;
Apr 27, 2008
Apr 27, 2008
469
470
471
for (i = 0; i < pd->attribute_count; i++)
{
Apr 28, 2008
Apr 28, 2008
472
const GLint loc = ctx->glGetAttribLocation(program->handle, a->name);
Apr 27, 2008
Apr 27, 2008
473
474
475
476
if (loc != -1) // maybe the Attribute was optimized out?
{
AttributeMap *map = &program->attributes[program->attribute_count];
map->attribute = &a[i];
Apr 27, 2008
Apr 27, 2008
477
map->location = (GLuint) loc;
Apr 27, 2008
Apr 27, 2008
478
479
480
481
482
483
program->attribute_count++;
} // if
} // for
} // lookup_attributes
Apr 26, 2008
Apr 26, 2008
484
485
486
MOJOSHADER_glProgram *MOJOSHADER_glLinkProgram(MOJOSHADER_glShader *vshader,
MOJOSHADER_glShader *pshader)
{
Apr 27, 2008
Apr 27, 2008
487
488
489
if ((vshader == NULL) && (pshader == NULL))
return NULL;
Apr 27, 2008
Apr 27, 2008
490
MOJOSHADER_glProgram *retval = NULL;
Apr 28, 2008
Apr 28, 2008
491
const GLhandleARB program = ctx->glCreateProgramObject();
Apr 26, 2008
Apr 26, 2008
492
Apr 28, 2008
Apr 28, 2008
493
494
if (vshader != NULL) ctx->glAttachObject(program, vshader->handle);
if (pshader != NULL) ctx->glAttachObject(program, pshader->handle);
Apr 27, 2008
Apr 27, 2008
495
Apr 28, 2008
Apr 28, 2008
496
ctx->glLinkProgram(program);
Apr 27, 2008
Apr 27, 2008
497
498
GLint ok = 0;
Apr 28, 2008
Apr 28, 2008
499
ctx->glGetObjectParameteriv(program, GL_OBJECT_LINK_STATUS_ARB, &ok);
Apr 27, 2008
Apr 27, 2008
500
501
502
if (!ok)
{
GLsizei len = 0;
Apr 28, 2008
Apr 28, 2008
503
ctx->glGetInfoLog(program, sizeof (error_buffer), &len, (GLchar *) error_buffer);
Apr 27, 2008
Apr 27, 2008
504
505
goto link_program_fail;
} // if
Apr 26, 2008
Apr 26, 2008
506
Apr 27, 2008
Apr 27, 2008
507
508
retval = (MOJOSHADER_glProgram *) Malloc(sizeof (MOJOSHADER_glProgram));
if (retval == NULL)
Apr 27, 2008
Apr 27, 2008
509
510
goto link_program_fail;
memset(retval, '\0', sizeof (MOJOSHADER_glProgram));
Apr 27, 2008
Apr 27, 2008
511
512
513
514
int numregs = 0;
if (vshader != NULL) numregs += vshader->parseData->uniform_count;
if (pshader != NULL) numregs += pshader->parseData->uniform_count;
Apr 27, 2008
Apr 27, 2008
515
516
517
retval->uniforms = (UniformMap *) Malloc(sizeof (UniformMap) * numregs);
if (retval->uniforms == NULL)
goto link_program_fail;
Apr 27, 2008
Apr 27, 2008
518
memset(retval->uniforms, '\0', sizeof (UniformMap) * numregs);
Apr 27, 2008
Apr 27, 2008
519
520
521
522
523
retval->handle = program;
retval->vertex = vshader;
retval->fragment = pshader;
retval->refcount = 1;
Apr 26, 2008
Apr 26, 2008
524
525
if (vshader != NULL)
Apr 27, 2008
Apr 27, 2008
526
{
Apr 27, 2008
Apr 27, 2008
527
528
529
530
531
532
retval->attributes = (AttributeMap *) Malloc(sizeof (AttributeMap) *
vshader->parseData->attribute_count);
if (retval->attributes == NULL)
goto link_program_fail;
lookup_attributes(retval);
Apr 27, 2008
Apr 27, 2008
533
lookup_uniforms(retval, vshader);
Apr 26, 2008
Apr 26, 2008
534
vshader->refcount++;
Apr 27, 2008
Apr 27, 2008
535
536
} // if
Apr 26, 2008
Apr 26, 2008
537
if (pshader != NULL)
Apr 27, 2008
Apr 27, 2008
538
539
{
lookup_uniforms(retval, pshader);
Apr 26, 2008
Apr 26, 2008
540
pshader->refcount++;
Apr 27, 2008
Apr 27, 2008
541
} // if
Apr 27, 2008
Apr 27, 2008
542
543
return retval;
Apr 27, 2008
Apr 27, 2008
544
545
546
547
link_program_fail:
if (retval != NULL)
{
Apr 27, 2008
Apr 27, 2008
548
549
Free(retval->uniforms);
Free(retval->attributes);
Apr 27, 2008
Apr 27, 2008
550
551
552
Free(retval);
} // if
Apr 28, 2008
Apr 28, 2008
553
ctx->glDeleteObject(program);
Apr 27, 2008
Apr 27, 2008
554
return NULL;
Apr 26, 2008
Apr 26, 2008
555
556
557
558
559
} // MOJOSHADER_glLinkProgram
void MOJOSHADER_glBindProgram(MOJOSHADER_glProgram *program)
{
Apr 27, 2008
Apr 27, 2008
560
GLhandleARB handle = 0;
Apr 27, 2008
Apr 27, 2008
561
int i;
Apr 27, 2008
Apr 27, 2008
562
Apr 28, 2008
Apr 28, 2008
563
if (program == ctx->bound_program)
Apr 27, 2008
Apr 27, 2008
564
565
566
return; // nothing to do.
// Disable any client-side arrays the current program could have used.
Apr 28, 2008
Apr 28, 2008
567
if (ctx->bound_program != NULL)
Apr 27, 2008
Apr 27, 2008
568
{
Apr 28, 2008
Apr 28, 2008
569
570
571
ctx->glDisableClientState(GL_VERTEX_ARRAY);
const int count = ctx->bound_program->attribute_count;
for (i = 0; i < count; i++)
Apr 27, 2008
Apr 27, 2008
572
{
Apr 28, 2008
Apr 28, 2008
573
574
const AttributeMap *map = &ctx->bound_program->attributes[i];
ctx->glDisableVertexAttribArray(map->location);
Apr 27, 2008
Apr 27, 2008
575
576
577
} // if
} // for
Apr 26, 2008
Apr 26, 2008
578
579
580
581
582
583
if (program != NULL)
{
handle = program->handle;
program->refcount++;
} // if
Apr 28, 2008
Apr 28, 2008
584
585
586
ctx->glUseProgramObject(handle);
program_unref(ctx->bound_program);
ctx->bound_program = program;
Apr 26, 2008
Apr 26, 2008
587
588
589
} // MOJOSHADER_glBindProgram
Apr 27, 2008
Apr 27, 2008
590
591
592
593
594
595
static inline uint maxuint(const uint a, const uint b)
{
return ((a > b) ? a : b);
} // maxuint
Apr 26, 2008
Apr 26, 2008
596
void MOJOSHADER_glSetVertexShaderUniformF(unsigned int idx, const float *data,
Apr 27, 2008
Apr 27, 2008
597
unsigned int vec4n)
Apr 26, 2008
Apr 26, 2008
598
{
Apr 28, 2008
Apr 28, 2008
599
const uint maxregs = STATICARRAYLEN(ctx->vs_reg_file_f) / 4;
Apr 27, 2008
Apr 27, 2008
600
601
if (idx < maxregs)
{
Apr 27, 2008
Apr 27, 2008
602
const uint cpy = (maxuint(maxregs - idx, vec4n) * sizeof (*data)) * 4;
Apr 28, 2008
Apr 28, 2008
603
memcpy(ctx->vs_reg_file_f + (idx * 4), data, cpy);
Apr 27, 2008
Apr 27, 2008
604
} // if
Apr 26, 2008
Apr 26, 2008
605
606
607
608
} // MOJOSHADER_glSetVertexShaderUniformF
void MOJOSHADER_glSetVertexShaderUniformI(unsigned int idx, const int *data,
Apr 27, 2008
Apr 27, 2008
609
unsigned int ivec4n)
Apr 26, 2008
Apr 26, 2008
610
{
Apr 28, 2008
Apr 28, 2008
611
const uint maxregs = STATICARRAYLEN(ctx->vs_reg_file_i) / 4;
Apr 27, 2008
Apr 27, 2008
612
613
if (idx < maxregs)
{
Apr 27, 2008
Apr 27, 2008
614
const uint cpy = (maxuint(maxregs - idx, ivec4n) * sizeof (*data)) * 4;
Apr 28, 2008
Apr 28, 2008
615
memcpy(ctx->vs_reg_file_i + (idx * 4), data, cpy);
Apr 27, 2008
Apr 27, 2008
616
} // if
Apr 26, 2008
Apr 26, 2008
617
618
619
620
621
622
} // MOJOSHADER_glSetVertexShaderUniformI
void MOJOSHADER_glSetVertexShaderUniformB(unsigned int idx, const int *data,
unsigned int bcount)
{
Apr 28, 2008
Apr 28, 2008
623
const uint maxregs = STATICARRAYLEN(ctx->vs_reg_file_f) / 4;
Apr 27, 2008
Apr 27, 2008
624
625
if (idx < maxregs)
{
Apr 28, 2008
Apr 28, 2008
626
uint8 *wptr = ctx->vs_reg_file_b + idx;
Apr 27, 2008
Apr 27, 2008
627
628
629
630
uint8 *endptr = wptr + maxuint(maxregs - idx, bcount);
while (wptr != endptr)
*(wptr++) = *(data++) ? 1 : 0;
} // if
Apr 26, 2008
Apr 26, 2008
631
632
633
634
} // MOJOSHADER_glSetVertexShaderUniformB
void MOJOSHADER_glSetPixelShaderUniformF(unsigned int idx, const float *data,
Apr 27, 2008
Apr 27, 2008
635
unsigned int vec4n)
Apr 26, 2008
Apr 26, 2008
636
{
Apr 28, 2008
Apr 28, 2008
637
const uint maxregs = STATICARRAYLEN(ctx->ps_reg_file_f) / 4;
Apr 27, 2008
Apr 27, 2008
638
639
if (idx < maxregs)
{
Apr 27, 2008
Apr 27, 2008
640
const uint cpy = (maxuint(maxregs - idx, vec4n) * sizeof (*data)) * 4;
Apr 28, 2008
Apr 28, 2008
641
memcpy(ctx->ps_reg_file_f + (idx * 4), data, cpy);
Apr 27, 2008
Apr 27, 2008
642
} // if
Apr 26, 2008
Apr 26, 2008
643
644
645
646
} // MOJOSHADER_glSetPixelShaderUniformF
void MOJOSHADER_glSetPixelShaderUniformI(unsigned int idx, const int *data,
Apr 27, 2008
Apr 27, 2008
647
unsigned int ivec4n)
Apr 26, 2008
Apr 26, 2008
648
{
Apr 28, 2008
Apr 28, 2008
649
const uint maxregs = STATICARRAYLEN(ctx->ps_reg_file_i) / 4;
Apr 27, 2008
Apr 27, 2008
650
651
if (idx < maxregs)
{
Apr 27, 2008
Apr 27, 2008
652
const uint cpy = (maxuint(maxregs - idx, ivec4n) * sizeof (*data)) * 4;
Apr 28, 2008
Apr 28, 2008
653
memcpy(ctx->ps_reg_file_i + (idx * 4), data, cpy);
Apr 27, 2008
Apr 27, 2008
654
} // if
Apr 26, 2008
Apr 26, 2008
655
656
657
658
} // MOJOSHADER_glSetPixelShaderUniformI
void MOJOSHADER_glSetPixelShaderUniformB(unsigned int idx, const int *data,
Apr 27, 2008
Apr 27, 2008
659
unsigned int bcount)
Apr 26, 2008
Apr 26, 2008
660
{
Apr 28, 2008
Apr 28, 2008
661
const uint maxregs = STATICARRAYLEN(ctx->ps_reg_file_f) / 4;
Apr 27, 2008
Apr 27, 2008
662
663
if (idx < maxregs)
{
Apr 28, 2008
Apr 28, 2008
664
uint8 *wptr = ctx->ps_reg_file_b + idx;
Apr 27, 2008
Apr 27, 2008
665
666
667
668
uint8 *endptr = wptr + maxuint(maxregs - idx, bcount);
while (wptr != endptr)
*(wptr++) = *(data++) ? 1 : 0;
} // if
Apr 26, 2008
Apr 26, 2008
669
670
671
} // MOJOSHADER_glSetPixelShaderUniformB
Apr 27, 2008
Apr 27, 2008
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
static inline GLenum opengl_posattr_type(const MOJOSHADER_attributeType type)
{
// we don't ever use the glVertexPointer() stream, so we just need to
// make the data types reasonably match, so the GL doesn't overrun
// the buffer when dereferencing it.
switch (type)
{
case MOJOSHADER_ATTRIBUTE_BYTE: return GL_NONE; // oh well.
case MOJOSHADER_ATTRIBUTE_UBYTE: return GL_NONE; // oh well.
case MOJOSHADER_ATTRIBUTE_SHORT: return GL_SHORT;
case MOJOSHADER_ATTRIBUTE_USHORT: return GL_SHORT;
case MOJOSHADER_ATTRIBUTE_INT: return GL_INT;
case MOJOSHADER_ATTRIBUTE_UINT: return GL_INT;
case MOJOSHADER_ATTRIBUTE_FLOAT: return GL_FLOAT;
case MOJOSHADER_ATTRIBUTE_DOUBLE: return GL_DOUBLE;
Apr 28, 2008
Apr 28, 2008
688
case MOJOSHADER_ATTRIBUTE_HALF_FLOAT: return GL_SHORT;
Apr 27, 2008
Apr 27, 2008
689
690
691
692
693
694
695
696
697
698
699
700
701
} // switch
return GL_NONE; // oh well. Raises a GL error later.
} // opengl_posattr_type
static inline GLenum opengl_attr_type(const MOJOSHADER_attributeType type)
{
switch (type)
{
case MOJOSHADER_ATTRIBUTE_BYTE: return GL_BYTE;
case MOJOSHADER_ATTRIBUTE_UBYTE: return GL_UNSIGNED_BYTE;
case MOJOSHADER_ATTRIBUTE_SHORT: return GL_SHORT;
Apr 27, 2008
Apr 27, 2008
702
case MOJOSHADER_ATTRIBUTE_USHORT: return GL_UNSIGNED_SHORT;
Apr 27, 2008
Apr 27, 2008
703
704
705
706
case MOJOSHADER_ATTRIBUTE_INT: return GL_INT;
case MOJOSHADER_ATTRIBUTE_UINT: return GL_UNSIGNED_INT;
case MOJOSHADER_ATTRIBUTE_FLOAT: return GL_FLOAT;
case MOJOSHADER_ATTRIBUTE_DOUBLE: return GL_DOUBLE;
Apr 28, 2008
Apr 28, 2008
707
708
case MOJOSHADER_ATTRIBUTE_HALF_FLOAT:
Apr 28, 2008
Apr 28, 2008
709
if (ctx->have_GL_NV_half_float)
Apr 28, 2008
Apr 28, 2008
710
711
return GL_HALF_FLOAT_NV;
break;
Apr 27, 2008
Apr 27, 2008
712
713
714
715
716
717
} // switch
return GL_NONE; // oh well. Raises a GL error later.
} // opengl_attr_type
Apr 26, 2008
Apr 26, 2008
718
719
720
721
722
723
void MOJOSHADER_glSetVertexAttribute(MOJOSHADER_usage usage,
int index, unsigned int size,
MOJOSHADER_attributeType type,
int normalized, unsigned int stride,
const void *ptr)
{
Apr 28, 2008
Apr 28, 2008
724
if ((ctx->bound_program == NULL) || (ctx->bound_program->vertex == NULL))
Apr 27, 2008
Apr 27, 2008
725
726
727
728
729
730
731
732
733
734
735
return;
// Since glVertexPointer() lacks the flexibility that we can get from
// glVertexAttribPointer(), we set POSITION0 to a generic vertex
// attribute, and the shaders we generate know to look there instead of
// GLSL's gl_Position global variable. But to keep the GL handy, we
// also set the best possible equivalent with glVertexPointer(). Messy.
if ((usage == MOJOSHADER_USAGE_POSITION) && (index == 0))
{
// !!! FIXME: fails if size==1.
Apr 28, 2008
Apr 28, 2008
736
737
ctx->glVertexPointer(size, opengl_posattr_type(type), stride, ptr);
ctx->glEnableClientState(GL_VERTEX_ARRAY);
Apr 27, 2008
Apr 27, 2008
738
739
740
741
} // if
int i;
GLuint gl_index = 0;
Apr 28, 2008
Apr 28, 2008
742
743
const int count = ctx->bound_program->attribute_count;
for (i = 0; i < count; i++)
Apr 27, 2008
Apr 27, 2008
744
{
Apr 28, 2008
Apr 28, 2008
745
const AttributeMap *map = &ctx->bound_program->attributes[i];
Apr 27, 2008
Apr 27, 2008
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
const MOJOSHADER_attribute *a = map->attribute;
// !!! FIXME: is this array guaranteed to be sorted by usage?
// !!! FIXME: if so, we can break out of the loop if a->usage > usage.
if ((a->usage == usage) && (a->index == index))
{
gl_index = map->location;
break;
} // if
} // for
if (gl_index != 0)
{
const GLenum gl_type = opengl_attr_type(type);
Apr 27, 2008
Apr 27, 2008
761
const GLboolean norm = (normalized) ? GL_TRUE : GL_FALSE;
Apr 28, 2008
Apr 28, 2008
762
763
ctx->glVertexAttribPointer(gl_index, size, gl_type, norm, stride, ptr);
ctx->glEnableVertexAttribArray(gl_index);
Apr 27, 2008
Apr 27, 2008
764
} // if
Apr 26, 2008
Apr 26, 2008
765
766
767
768
769
} // MOJOSHADER_glSetVertexAttribute
void MOJOSHADER_glProgramReady(void)
{
Apr 27, 2008
Apr 27, 2008
770
771
int i;
Apr 28, 2008
Apr 28, 2008
772
if (ctx->bound_program == NULL)
Apr 27, 2008
Apr 27, 2008
773
774
775
776
777
return; // nothing to do.
// !!! FIXME: don't push Uniforms if we know they haven't changed.
// push Uniforms to the program from our register files...
Apr 28, 2008
Apr 28, 2008
778
779
const int count = ctx->bound_program->uniform_count;
for (i = 0; i < count; i++)
Apr 27, 2008
Apr 27, 2008
780
{
Apr 28, 2008
Apr 28, 2008
781
const UniformMap *map = &ctx->bound_program->uniforms[i];
Apr 27, 2008
Apr 27, 2008
782
783
784
785
786
787
788
789
790
const MOJOSHADER_uniform *u = map->uniform;
const MOJOSHADER_uniformType type = u->type;
const MOJOSHADER_shaderType shader_type = map->shader_type;
const int index = u->index;
const GLint location = map->location;
if (shader_type == MOJOSHADER_TYPE_VERTEX)
{
if (type == MOJOSHADER_UNIFORM_FLOAT)
Apr 28, 2008
Apr 28, 2008
791
ctx->glUniform4fv(location, 1, &ctx->vs_reg_file_f[index * 4]);
Apr 27, 2008
Apr 27, 2008
792
else if (type == MOJOSHADER_UNIFORM_INT)
Apr 28, 2008
Apr 28, 2008
793
ctx->glUniform4iv(location, 1, &ctx->vs_reg_file_i[index * 4]);
Apr 27, 2008
Apr 27, 2008
794
else if (type == MOJOSHADER_UNIFORM_BOOL)
Apr 28, 2008
Apr 28, 2008
795
ctx->glUniform1i(location, ctx->vs_reg_file_b[index]);
Apr 27, 2008
Apr 27, 2008
796
797
798
799
800
} // if
else if (shader_type == MOJOSHADER_TYPE_PIXEL)
{
if (type == MOJOSHADER_UNIFORM_FLOAT)
Apr 28, 2008
Apr 28, 2008
801
ctx->glUniform4fv(location, 1, &ctx->ps_reg_file_f[index * 4]);
Apr 27, 2008
Apr 27, 2008
802
else if (type == MOJOSHADER_UNIFORM_INT)
Apr 28, 2008
Apr 28, 2008
803
ctx->glUniform4iv(location, 1, &ctx->ps_reg_file_i[index * 4]);
Apr 27, 2008
Apr 27, 2008
804
else if (type == MOJOSHADER_UNIFORM_BOOL)
Apr 28, 2008
Apr 28, 2008
805
ctx->glUniform1i(location, ctx->ps_reg_file_b[index]);
Apr 27, 2008
Apr 27, 2008
806
807
} // else if
} // for
Apr 26, 2008
Apr 26, 2008
808
809
810
} // MOJOSHADER_glProgramReady
Apr 27, 2008
Apr 27, 2008
811
void MOJOSHADER_glDeleteProgram(MOJOSHADER_glProgram *program)
Apr 26, 2008
Apr 26, 2008
812
{
Apr 27, 2008
Apr 27, 2008
813
program_unref(program);
Apr 26, 2008
Apr 26, 2008
814
815
816
} // MOJOSHADER_glDeleteProgram
Apr 27, 2008
Apr 27, 2008
817
void MOJOSHADER_glDeleteShader(MOJOSHADER_glShader *shader)
Apr 26, 2008
Apr 26, 2008
818
819
820
821
822
{
shader_unref(shader);
} // MOJOSHADER_glDeleteShader
Apr 28, 2008
Apr 28, 2008
823
void MOJOSHADER_glDestroyContext(MOJOSHADER_glContext *_ctx)
Apr 26, 2008
Apr 26, 2008
824
{
Apr 28, 2008
Apr 28, 2008
825
826
MOJOSHADER_glContext *current_ctx = ctx;
ctx = _ctx;
Apr 26, 2008
Apr 26, 2008
827
MOJOSHADER_glBindProgram(NULL);
Apr 28, 2008
Apr 28, 2008
828
lookup_entry_points(NULL);
Apr 28, 2008
Apr 28, 2008
829
830
Free(ctx);
ctx = ((current_ctx == _ctx) ? NULL : current_ctx);
Apr 28, 2008
Apr 28, 2008
831
} // MOJOSHADER_glDestroyContext
Apr 26, 2008
Apr 26, 2008
832
833
// end of mojoshader_opengl.c ...