Skip to content

Latest commit

 

History

History
597 lines (486 loc) · 17.8 KB

mojoshader_opengl.c

File metadata and controls

597 lines (486 loc) · 17.8 KB
 
Apr 26, 2008
Apr 26, 2008
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdarg.h>
#include <assert.h>
#include "mojoshader.h"
// Get basic wankery out of the way here...
Apr 27, 2008
Apr 27, 2008
12
13
#define STATICARRAYLEN(x) ( (sizeof ((x))) / (sizeof ((x)[0])) )
Apr 26, 2008
Apr 26, 2008
14
15
16
17
18
19
20
21
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
22
GLhandleARB handle;
Apr 26, 2008
Apr 26, 2008
23
24
25
uint32 refcount;
};
Apr 27, 2008
Apr 27, 2008
26
27
typedef struct
{
Apr 27, 2008
Apr 27, 2008
28
MOJOSHADER_shaderType shader_type;
Apr 27, 2008
Apr 27, 2008
29
MOJOSHADER_uniform *uniform;
Apr 27, 2008
Apr 27, 2008
30
GLuint location;
Apr 27, 2008
Apr 27, 2008
31
32
} UniformMap;
Apr 27, 2008
Apr 27, 2008
33
34
35
typedef struct
{
MOJOSHADER_attribute *attribute;
Apr 27, 2008
Apr 27, 2008
36
GLuint location;
Apr 27, 2008
Apr 27, 2008
37
38
} AttributeMap;
Apr 26, 2008
Apr 26, 2008
39
40
41
42
struct MOJOSHADER_glProgram
{
const MOJOSHADER_glShader *vertex;
const MOJOSHADER_glShader *fragment;
Apr 27, 2008
Apr 27, 2008
43
GLhandleARB handle;
Apr 27, 2008
Apr 27, 2008
44
45
uint32 uniform_count;
UniformMap uniforms;
Apr 27, 2008
Apr 27, 2008
46
47
uint32 attribute_count;
AttributeMap attributes;
Apr 26, 2008
Apr 26, 2008
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
uint32 refcount;
};
// Allocators...
static MOJOSHADER_malloc malloc_fn = NULL;
static MOJOSHADER_free free_fn = NULL;
static void *malloc_data = NULL;
// The constant register files...
// Man, it kills me how much memory this takes...
static float vs_register_file_f[8192 * 4];
static int vs_register_file_i[2047 * 4];
static uint8 vs_register_file_b[2047];
static float ps_register_file_f[8192 * 4];
static int ps_register_file_i[2047 * 4];
static uint8 ps_register_file_b[2047];
// GL stuff...
static MOJOSHADER_glProgram *bound_program = NULL;
Apr 27, 2008
Apr 27, 2008
68
69
70
71
72
73
74
75
// 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// #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)
{
return malloc_fn(len, malloc_data);
} // Malloc
static inline void Free(void *ptr)
{
return free_fn(ptr, malloc_data);
} // Free
Apr 27, 2008
Apr 27, 2008
98
99
100
101
102
103
const char *MOJOSHADER_glGetError(void)
{
return error_buffer;
} // MOJOSHADER_glGetError
Apr 26, 2008
Apr 26, 2008
104
105
106
107
int MOJOSHADER_glInit(const char *_profile,
void *(*lookup)(const char *fnname),
MOJOSHADER_malloc m, MOJOSHADER_free f, void *d)
{
Apr 27, 2008
Apr 27, 2008
108
109
error_buffer[0] = '\0';
Apr 26, 2008
Apr 26, 2008
110
111
112
if (strcmp(_profile, MOJOSHADER_PROFILE_GLSL) != 0)
profile = MOJOSHADER_PROFILE_GLSL;
else
Apr 27, 2008
Apr 27, 2008
113
114
{
set_error("unknown profile");
Apr 26, 2008
Apr 26, 2008
115
return 0;
Apr 27, 2008
Apr 27, 2008
116
} // else
Apr 26, 2008
Apr 26, 2008
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
// !!! FIXME: lookup glGetString(), check extensions.
malloc_fn = (m == NULL) ? internal_malloc : m;
free_fn = (f == NULL) ? internal_free : f;
malloc_data = d;
// !!! FIXME: lookup other entry points.
memset(vs_register_file_f, '\0', sizeof (vs_register_file_f));
memset(vs_register_file_i, '\0', sizeof (vs_register_file_i));
memset(vs_register_file_b, '\0', sizeof (vs_register_file_b));
memset(ps_register_file_f, '\0', sizeof (ps_register_file_f));
memset(ps_register_file_i, '\0', sizeof (ps_register_file_i));
memset(ps_register_file_b, '\0', sizeof (ps_register_file_b));
MOJOSHADER_glBindProgram(NULL);
return 1;
} // MOJOSHADER_glInit
MOJOSHADER_glShader *MOJOSHADER_glCompileShader(const unsigned char *tokenbuf,
const unsigned int bufsize)
{
MOJOSHADER_glShader *retval = NULL;
Apr 27, 2008
Apr 27, 2008
143
GLhandleARB shader = 0;
Apr 26, 2008
Apr 26, 2008
144
145
146
147
const MOJOSHADER_parseData *pd = MOJOSHADER_parse(profile, tokenbuf,
bufsize, malloc_fn,
free_fn, malloc_data);
if (pd->error != NULL)
Apr 27, 2008
Apr 27, 2008
148
149
{
set_error(pd->error);
Apr 27, 2008
Apr 27, 2008
150
goto compile_shader_fail;
Apr 27, 2008
Apr 27, 2008
151
} // if
Apr 26, 2008
Apr 26, 2008
152
153
154
retval = (MOJOSHADER_glShader *) Malloc(sizeof (MOJOSHADER_glShader));
if (retval == NULL)
Apr 27, 2008
Apr 27, 2008
155
156
goto compile_shader_fail;
Apr 26, 2008
Apr 26, 2008
157
158
159
GLint ok = 0;
const GLenum shader_type = (pd->shader_type == MOJOSHADER_TYPE_PIXEL) ? GL_FRAGMENT_SHADER_ARB : GL_VERTEX_SHADER_ARB;
GLint shaderlen = (GLint) pd->output_len;
Apr 27, 2008
Apr 27, 2008
160
shader = pglCreateShaderObjectARB(shader_type);
Apr 26, 2008
Apr 26, 2008
161
162
163
164
165
166
167
168
pglShaderSourceARB(shader, 1, (const GLcharARB **) &pd->output, &shaderlen);
pglCompileShaderARB(shader);
pglGetObjectParameterivARB(shader, GL_OBJECT_COMPILE_STATUS_ARB, &ok);
if (!ok)
{
GLsizei len = 0;
Apr 27, 2008
Apr 27, 2008
169
170
pglGetInfoLogARB(shader, sizeof (error_buffer), &len,
(GLcharARB *) error_buffer);
Apr 27, 2008
Apr 27, 2008
171
goto compile_shader_fail;
Apr 26, 2008
Apr 26, 2008
172
173
174
175
176
177
} // if
retval->parseData = pd;
retval->handle = shader;
retval->refcount = 1;
return retval;
Apr 27, 2008
Apr 27, 2008
178
179
180
181
182
183
184
compile_shader_fail:
MOJOSHADER_freeParseData(pd);
Free(retval);
if (shader != 0)
pglDeleteObjectARB(shader);
return NULL;
Apr 26, 2008
Apr 26, 2008
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
214
215
216
} // MOJOSHADER_glCompileShader
static void shader_unref(MOJOSHADER_glShader *shader)
{
if (shader != NULL)
{
const uint32 refcount = program->refcount;
if (refcount > 1)
program->refcount--;
else
{
pglDeleteObjectARB(shader->handle);
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
{
pglDeleteObjectARB(program->handle);
shader_unref(program->vertex);
shader_unref(program->fragment);
Apr 27, 2008
Apr 27, 2008
217
Free(program->attributes);
Apr 27, 2008
Apr 27, 2008
218
Free(program->uniforms);
Apr 26, 2008
Apr 26, 2008
219
220
221
222
223
224
Free(program);
} // else
} // if
} // program_unref
Apr 27, 2008
Apr 27, 2008
225
226
227
228
229
230
static void lookup_uniforms(MOJOSHADER_glProgram *program,
MOJOSHADER_glShader *shader)
{
int i;
const MOJOSHADER_parseData *pd = shader->parseData;
const MOJOSHADER_uniforms *u = pd->uniforms;
Apr 27, 2008
Apr 27, 2008
231
const MOJOSHADER_shaderType shader_type = pd->shader_type;
Apr 27, 2008
Apr 27, 2008
232
233
234
235
236
237
238
for (i = 0; i < pd->uniform_count; i++)
{
const GLint loc = pglGetUniformLocationARB(program->handle, u[i].name);
if (loc != -1) // maybe the Uniform was optimized out?
{
UniformMap *map = &program->uniforms[program->uniform_count];
Apr 27, 2008
Apr 27, 2008
239
map->shader_type = shader_type;
Apr 27, 2008
Apr 27, 2008
240
map->uniform = &u[i];
Apr 27, 2008
Apr 27, 2008
241
map->location = (GLuint) loc;
Apr 27, 2008
Apr 27, 2008
242
243
244
245
246
247
program->uniform_count++;
} // if
} // for
} // lookup_uniforms
Apr 27, 2008
Apr 27, 2008
248
249
250
251
252
253
254
255
256
257
258
259
260
static void lookup_attributes(MOJOSHADER_glProgram *program)
{
int i;
const MOJOSHADER_parseData *pd = program->vertex->parseData;
const MOJOSHADER_attributes *a = pd->attributes;
for (i = 0; i < pd->attribute_count; i++)
{
const GLint loc = pglGetAttribLocationARB(program->handle, a->name);
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
261
map->location = (GLuint) loc;
Apr 27, 2008
Apr 27, 2008
262
263
264
265
266
267
program->attribute_count++;
} // if
} // for
} // lookup_attributes
Apr 26, 2008
Apr 26, 2008
268
269
270
MOJOSHADER_glProgram *MOJOSHADER_glLinkProgram(MOJOSHADER_glShader *vshader,
MOJOSHADER_glShader *pshader)
{
Apr 27, 2008
Apr 27, 2008
271
272
273
if ((vshader == NULL) && (pshader == NULL))
return NULL;
Apr 27, 2008
Apr 27, 2008
274
MOJOSHADER_glProgram *retval = NULL;
Apr 27, 2008
Apr 27, 2008
275
const GLhandleARB program = pglCreateProgramObjectARB();
Apr 26, 2008
Apr 26, 2008
276
Apr 27, 2008
Apr 27, 2008
277
278
if (vshader != NULL) pglAttachObjectARB(program, vshader->handle);
if (pshader != NULL) pglAttachObjectARB(program, pshader->handle);
Apr 27, 2008
Apr 27, 2008
279
Apr 27, 2008
Apr 27, 2008
280
281
282
283
284
285
286
pglLinkProgramARB(program);
GLint ok = 0;
pglGetObjectParameterivARB(program, GL_OBJECT_LINK_STATUS_ARB, &ok);
if (!ok)
{
GLsizei len = 0;
Apr 27, 2008
Apr 27, 2008
287
288
pglGetInfoLogARB(shader, sizeof (error_buffer), &len,
(GLcharARB *) error_buffer);
Apr 27, 2008
Apr 27, 2008
289
290
goto link_program_fail;
} // if
Apr 26, 2008
Apr 26, 2008
291
Apr 27, 2008
Apr 27, 2008
292
293
retval = (MOJOSHADER_glProgram *) Malloc(sizeof (MOJOSHADER_glProgram));
if (retval == NULL)
Apr 27, 2008
Apr 27, 2008
294
295
goto link_program_fail;
memset(retval, '\0', sizeof (MOJOSHADER_glProgram));
Apr 27, 2008
Apr 27, 2008
296
297
298
299
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
300
301
302
retval->uniforms = (UniformMap *) Malloc(sizeof (UniformMap) * numregs);
if (retval->uniforms == NULL)
goto link_program_fail;
Apr 27, 2008
Apr 27, 2008
303
memset(retval->uniforms, '\0', sizeof (UniformMap) * numregs);
Apr 27, 2008
Apr 27, 2008
304
305
306
307
308
retval->handle = program;
retval->vertex = vshader;
retval->fragment = pshader;
retval->refcount = 1;
Apr 26, 2008
Apr 26, 2008
309
310
if (vshader != NULL)
Apr 27, 2008
Apr 27, 2008
311
{
Apr 27, 2008
Apr 27, 2008
312
313
314
315
316
317
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
318
lookup_uniforms(retval, vshader);
Apr 26, 2008
Apr 26, 2008
319
vshader->refcount++;
Apr 27, 2008
Apr 27, 2008
320
321
} // if
Apr 26, 2008
Apr 26, 2008
322
if (pshader != NULL)
Apr 27, 2008
Apr 27, 2008
323
324
{
lookup_uniforms(retval, pshader);
Apr 26, 2008
Apr 26, 2008
325
pshader->refcount++;
Apr 27, 2008
Apr 27, 2008
326
} // if
Apr 27, 2008
Apr 27, 2008
327
328
return retval;
Apr 27, 2008
Apr 27, 2008
329
330
331
332
link_program_fail:
if (retval != NULL)
{
Apr 27, 2008
Apr 27, 2008
333
334
Free(retval->uniforms);
Free(retval->attributes);
Apr 27, 2008
Apr 27, 2008
335
336
337
Free(retval);
} // if
Apr 27, 2008
Apr 27, 2008
338
pglDeleteObjectARB(program);
Apr 27, 2008
Apr 27, 2008
339
return NULL;
Apr 26, 2008
Apr 26, 2008
340
341
342
343
344
} // MOJOSHADER_glLinkProgram
void MOJOSHADER_glBindProgram(MOJOSHADER_glProgram *program)
{
Apr 27, 2008
Apr 27, 2008
345
GLhandleARB handle = 0;
Apr 26, 2008
Apr 26, 2008
346
347
348
349
350
351
352
353
354
355
356
357
358
359
if (program != NULL)
{
handle = program->handle;
program->refcount++;
} // if
// !!! FIXME: unbind client-side arrays.
pglUseProgramObjectARB(handle);
program_unref(bound_program);
bound_program = program;
} // MOJOSHADER_glBindProgram
Apr 27, 2008
Apr 27, 2008
360
361
362
363
364
365
static inline uint maxuint(const uint a, const uint b)
{
return ((a > b) ? a : b);
} // maxuint
Apr 26, 2008
Apr 26, 2008
366
void MOJOSHADER_glSetVertexShaderUniformF(unsigned int idx, const float *data,
Apr 27, 2008
Apr 27, 2008
367
unsigned int vec4n)
Apr 26, 2008
Apr 26, 2008
368
{
Apr 27, 2008
Apr 27, 2008
369
370
371
372
373
374
const uint maxregs = STATICARRAYLEN(vs_register_file_f) / 4;
if (idx < maxregs)
{
const uint cpy = maxuint(maxregs - idx, vec4n) * sizeof (*data)) * 4;
memcpy(vs_register_file_f + (idx * 4), data, cpy);
} // if
Apr 26, 2008
Apr 26, 2008
375
376
377
378
} // MOJOSHADER_glSetVertexShaderUniformF
void MOJOSHADER_glSetVertexShaderUniformI(unsigned int idx, const int *data,
Apr 27, 2008
Apr 27, 2008
379
unsigned int ivec4n)
Apr 26, 2008
Apr 26, 2008
380
{
Apr 27, 2008
Apr 27, 2008
381
382
383
384
385
386
const uint maxregs = STATICARRAYLEN(vs_register_file_i) / 4;
if (idx < maxregs)
{
const uint cpy = maxuint(maxregs - idx, ivec4n) * sizeof (*data)) * 4;
memcpy(vs_register_file_i + (idx * 4), data, cpy);
} // if
Apr 26, 2008
Apr 26, 2008
387
388
389
390
391
392
} // MOJOSHADER_glSetVertexShaderUniformI
void MOJOSHADER_glSetVertexShaderUniformB(unsigned int idx, const int *data,
unsigned int bcount)
{
Apr 27, 2008
Apr 27, 2008
393
394
395
396
397
398
399
400
const uint maxregs = STATICARRAYLEN(vs_register_file_f) / 4;
if (idx < maxregs)
{
uint8 *wptr = vs_register_file_b + idx;
uint8 *endptr = wptr + maxuint(maxregs - idx, bcount);
while (wptr != endptr)
*(wptr++) = *(data++) ? 1 : 0;
} // if
Apr 26, 2008
Apr 26, 2008
401
402
403
404
} // MOJOSHADER_glSetVertexShaderUniformB
void MOJOSHADER_glSetPixelShaderUniformF(unsigned int idx, const float *data,
Apr 27, 2008
Apr 27, 2008
405
unsigned int vec4n)
Apr 26, 2008
Apr 26, 2008
406
{
Apr 27, 2008
Apr 27, 2008
407
408
409
410
411
412
const uint maxregs = STATICARRAYLEN(ps_register_file_f) / 4;
if (idx < maxregs)
{
const uint cpy = maxuint(maxregs - idx, vec4n) * sizeof (*data)) * 4;
memcpy(ps_register_file_f + (idx * 4), data, cpy);
} // if
Apr 26, 2008
Apr 26, 2008
413
414
415
416
} // MOJOSHADER_glSetPixelShaderUniformF
void MOJOSHADER_glSetPixelShaderUniformI(unsigned int idx, const int *data,
Apr 27, 2008
Apr 27, 2008
417
unsigned int ivec4n)
Apr 26, 2008
Apr 26, 2008
418
{
Apr 27, 2008
Apr 27, 2008
419
420
421
422
423
424
const uint maxregs = STATICARRAYLEN(ps_register_file_i) / 4;
if (idx < maxregs)
{
const uint cpy = maxuint(maxregs - idx, ivec4n) * sizeof (*data)) * 4;
memcpy(ps_register_file_i + (idx * 4), data, cpy);
} // if
Apr 26, 2008
Apr 26, 2008
425
426
427
428
} // MOJOSHADER_glSetPixelShaderUniformI
void MOJOSHADER_glSetPixelShaderUniformB(unsigned int idx, const int *data,
Apr 27, 2008
Apr 27, 2008
429
unsigned int bcount)
Apr 26, 2008
Apr 26, 2008
430
{
Apr 27, 2008
Apr 27, 2008
431
432
433
434
435
436
437
438
const uint maxregs = STATICARRAYLEN(ps_register_file_f) / 4;
if (idx < maxregs)
{
uint8 *wptr = ps_register_file_b + idx;
uint8 *endptr = wptr + maxuint(maxregs - idx, bcount);
while (wptr != endptr)
*(wptr++) = *(data++) ? 1 : 0;
} // if
Apr 26, 2008
Apr 26, 2008
439
440
441
} // MOJOSHADER_glSetPixelShaderUniformB
Apr 27, 2008
Apr 27, 2008
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
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;
} // 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;
case MOJOSHADER_ATTRIBUTE_USHORT: return GL_USHORT;
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;
} // switch
return GL_NONE; // oh well. Raises a GL error later.
} // opengl_attr_type
Apr 26, 2008
Apr 26, 2008
482
483
484
485
486
487
void MOJOSHADER_glSetVertexAttribute(MOJOSHADER_usage usage,
int index, unsigned int size,
MOJOSHADER_attributeType type,
int normalized, unsigned int stride,
const void *ptr)
{
Apr 27, 2008
Apr 27, 2008
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
if (bound_program == NULL)
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.
pglVertexPointer(size, opengl_posattr_type(type), stride, ptr);
} // if
int i;
GLuint gl_index = 0;
for (i = 0; i < bound_program->attribute_count; i++)
{
const AttributeMap *map = &bound_program->attributes[i];
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);
const GLboolean gl_norm = (normalized) ? GL_TRUE : GL_FALSE;
pglVertexAttribPointer(gl_index, size, gl_type, gl_norm, stride, ptr);
} // if
Apr 26, 2008
Apr 26, 2008
526
527
528
529
530
} // MOJOSHADER_glSetVertexAttribute
void MOJOSHADER_glProgramReady(void)
{
Apr 27, 2008
Apr 27, 2008
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
int i;
if (bound_program == NULL)
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...
for (i = 0; i < bound_program->uniform_count; i++)
{
const UniformMap *map = &bound_program->uniforms[i];
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)
pglUniform4fvARB(location, 1, &vs_register_file_f[index * 4]);
else if (type == MOJOSHADER_UNIFORM_INT)
pglUniform4ivARB(location, 1, &vs_register_file_i[index * 4]);
else if (type == MOJOSHADER_UNIFORM_BOOL)
pglUniform1iARB(location, vs_register_file_b[index]);
} // if
else if (shader_type == MOJOSHADER_TYPE_PIXEL)
{
if (type == MOJOSHADER_UNIFORM_FLOAT)
pglUniform4fvARB(location, 1, &ps_register_file_f[index * 4]);
else if (type == MOJOSHADER_UNIFORM_INT)
pglUniform4ivARB(location, 1, &ps_register_file_i[index * 4]);
else if (type == MOJOSHADER_UNIFORM_BOOL)
pglUniform1iARB(location, ps_register_file_b[index]);
} // else if
} // for
Apr 26, 2008
Apr 26, 2008
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
} // MOJOSHADER_glProgramReady
void MOJOSHADER_glDeleteProgram(const MOJOSHADER_glProgram *program)
{
program_unref(shader);
} // MOJOSHADER_glDeleteProgram
void MOJOSHADER_glDeleteShader(const MOJOSHADER_glShader *shader)
{
shader_unref(shader);
} // MOJOSHADER_glDeleteShader
void MOJOSHADER_glDeinit(void)
{
MOJOSHADER_glBindProgram(NULL);
profile = NULL;
malloc_fn = NULL;
free_fn = NULL;
malloc_data = NULL;
Apr 27, 2008
Apr 27, 2008
591
error_buffer[0] = '\0';
Apr 26, 2008
Apr 26, 2008
592
593
594
595
596
// !!! FIXME: NULL entry points.
} // MOJOSHADER_glDeinit
// end of mojoshader_opengl.c ...