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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
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
482
483
484
485
486
487
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
526
527
528
529
530
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
|
/* Copyright (c) 2001, Stanford University
* All rights reserved
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#include "packspu.h"
#include "cr_packfunctions.h"
#include "cr_glstate.h"
#include "packspu_proto.h"
void PACKSPU_APIENTRY packspu_FogCoordPointerEXT( GLenum type, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackFogCoordPointerEXTSWAP( type, stride, pointer );
else
crPackFogCoordPointerEXT( type, stride, pointer );
}
#endif
crStateFogCoordPointerEXT( type, stride, pointer );
}
void PACKSPU_APIENTRY packspu_ColorPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackColorPointerSWAP( size, type, stride, pointer );
else
crPackColorPointer( size, type, stride, pointer );
}
#endif
crStateColorPointer( size, type, stride, pointer );
}
void PACKSPU_APIENTRY packspu_SecondaryColorPointerEXT( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackSecondaryColorPointerEXTSWAP( size, type, stride, pointer );
else
crPackSecondaryColorPointerEXT( size, type, stride, pointer );
}
#endif
crStateSecondaryColorPointerEXT( size, type, stride, pointer );
}
void PACKSPU_APIENTRY packspu_VertexPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
CRASSERT(ctx->clientState->extensions.ARB_vertex_buffer_object);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackVertexPointerSWAP( size, type, stride, pointer );
else
crPackVertexPointer( size, type, stride, pointer );
}
#endif
crStateVertexPointer( size, type, stride, pointer );
}
void PACKSPU_APIENTRY packspu_TexCoordPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackTexCoordPointerSWAP( size, type, stride, pointer );
else
crPackTexCoordPointer( size, type, stride, pointer );
}
#endif
crStateTexCoordPointer( size, type, stride, pointer );
}
void PACKSPU_APIENTRY packspu_NormalPointer( GLenum type, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackNormalPointerSWAP( type, stride, pointer );
else
crPackNormalPointer( type, stride, pointer );
}
#endif
crStateNormalPointer( type, stride, pointer );
}
void PACKSPU_APIENTRY packspu_EdgeFlagPointer( GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackEdgeFlagPointerSWAP( stride, pointer );
else
crPackEdgeFlagPointer( stride, pointer );
}
#endif
crStateEdgeFlagPointer( stride, pointer );
}
void PACKSPU_APIENTRY packspu_VertexAttribPointerARB( GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackVertexAttribPointerARBSWAP( index, size, type, normalized, stride, pointer );
else
crPackVertexAttribPointerARB( index, size, type, normalized, stride, pointer );
}
#endif
crStateVertexAttribPointerARB( index, size, type, normalized, stride, pointer );
}
void PACKSPU_APIENTRY packspu_VertexAttribPointerNV( GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackVertexAttribPointerNVSWAP( index, size, type, stride, pointer );
else
crPackVertexAttribPointerNV( index, size, type, stride, pointer );
}
#endif
crStateVertexAttribPointerNV( index, size, type, stride, pointer );
}
void PACKSPU_APIENTRY packspu_IndexPointer( GLenum type, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackIndexPointerSWAP( type, stride, pointer );
else
crPackIndexPointer( type, stride, pointer );
}
#endif
crStateIndexPointer(type, stride, pointer);
}
void PACKSPU_APIENTRY packspu_GetPointerv( GLenum pname, GLvoid **params )
{
crStateGetPointerv( pname, params );
}
void PACKSPU_APIENTRY packspu_InterleavedArrays( GLenum format, GLsizei stride, const GLvoid *pointer )
{
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
if (ctx->clientState->extensions.ARB_vertex_buffer_object) {
if (pack_spu.swap)
crPackInterleavedArraysSWAP( format, stride, pointer );
else
crPackInterleavedArrays( format, stride, pointer );
}
#endif
/*crDebug("packspu_InterleavedArrays");*/
crStateInterleavedArrays( format, stride, pointer );
}
void PACKSPU_APIENTRY
packspu_ArrayElement( GLint index )
{
/*@todo cash guest/host pointers calculation and use appropriate path here without crStateUseServerArrays call*/
#if 1
GLboolean serverArrays = GL_FALSE;
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
/*crDebug("packspu_ArrayElement index:%i", index);*/
if (ctx->clientState->extensions.ARB_vertex_buffer_object)
serverArrays = crStateUseServerArrays();
#endif
if (serverArrays) {
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
/* LockArraysEXT can not be executed between glBegin/glEnd pair, it also
* leads to vertexpointers being adjusted on the host side between glBegin/glEnd calls which
* produces unpredictable results. Locking is done before the glBegin call instead.
*/
CRASSERT(!clientState->array.locked || clientState->array.synced);
/* Send the DrawArrays command over the wire */
if (pack_spu.swap)
crPackArrayElementSWAP( index );
else
crPackArrayElement( index );
}
else {
/* evaluate locally */
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
if (pack_spu.swap)
crPackExpandArrayElementSWAP( index, clientState );
else
crPackExpandArrayElement( index, clientState );
}
#else
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
crPackExpandArrayElement(index, clientState);
#endif
}
/*#define CR_USE_LOCKARRAYS*/
void PACKSPU_APIENTRY
packspu_DrawElements( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
{
GLboolean serverArrays = GL_FALSE;
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
GLboolean lockedArrays = GL_FALSE;
CRBufferObject *elementsBuffer = crStateGetCurrent()->bufferobject.elementsBuffer;
/*crDebug("DrawElements count=%d, indices=%p", count, indices);*/
if (ctx->clientState->extensions.ARB_vertex_buffer_object)
serverArrays = crStateUseServerArrays();
# ifdef CR_USE_LOCKARRAYS
if (!serverArrays && !ctx->clientState->client.array.locked && (count>3)
&& (!elementsBuffer || !elementsBuffer->id))
{
GLuint min, max;
GLsizei i;
switch (type)
{
case GL_UNSIGNED_BYTE:
{
GLubyte *pIdx = (GLubyte *)indices;
min = max = pIdx[0];
for (i=0; i<count; ++i)
{
if (pIdx[i]<min) min = pIdx[i];
else if (pIdx[i]>max) max = pIdx[i];
}
break;
}
case GL_UNSIGNED_SHORT:
{
GLushort *pIdx = (GLushort *)indices;
min = max = pIdx[0];
for (i=0; i<count; ++i)
{
if (pIdx[i]<min) min = pIdx[i];
else if (pIdx[i]>max) max = pIdx[i];
}
break;
}
case GL_UNSIGNED_INT:
{
GLuint *pIdx = (GLuint *)indices;
min = max = pIdx[0];
for (i=0; i<count; ++i)
{
if (pIdx[i]<min) min = pIdx[i];
else if (pIdx[i]>max) max = pIdx[i];
}
break;
}
default: crError("Unknown type 0x%x", type);
}
if ((max-min)<(GLuint)(2*count))
{
crStateLockArraysEXT(min, max-min+1);
serverArrays = crStateUseServerArrays();
if (serverArrays)
{
lockedArrays = GL_TRUE;
}
else
{
crStateUnlockArraysEXT();
}
}
}
# endif
#endif
if (serverArrays) {
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
/*Note the comment in packspu_LockArraysEXT*/
if (clientState->array.locked && !clientState->array.synced)
{
crPackLockArraysEXT(clientState->array.lockFirst, clientState->array.lockCount);
clientState->array.synced = GL_TRUE;
}
/* Send the DrawArrays command over the wire */
if (pack_spu.swap)
crPackDrawElementsSWAP( mode, count, type, indices );
else
crPackDrawElements( mode, count, type, indices );
}
else {
/* evaluate locally */
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
if (pack_spu.swap)
crPackExpandDrawElementsSWAP( mode, count, type, indices, clientState );
else
{
//packspu_Begin(mode);
crPackExpandDrawElements( mode, count, type, indices, clientState );
//packspu_End();
}
}
#if CR_ARB_vertex_buffer_object
if (lockedArrays)
{
packspu_UnlockArraysEXT();
}
#endif
}
void PACKSPU_APIENTRY
packspu_DrawRangeElements( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices )
{
GLboolean serverArrays = GL_FALSE;
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
/*crDebug("DrawRangeElements count=%d", count);*/
if (ctx->clientState->extensions.ARB_vertex_buffer_object)
serverArrays = crStateUseServerArrays();
#endif
if (serverArrays) {
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
/*Note the comment in packspu_LockArraysEXT*/
if (clientState->array.locked && !clientState->array.synced)
{
crPackLockArraysEXT(clientState->array.lockFirst, clientState->array.lockCount);
clientState->array.synced = GL_TRUE;
}
/* Send the DrawRangeElements command over the wire */
if (pack_spu.swap)
crPackDrawRangeElementsSWAP( mode, start, end, count, type, indices );
else
crPackDrawRangeElements( mode, start, end, count, type, indices );
}
else {
/* evaluate locally */
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
if (pack_spu.swap)
crPackExpandDrawRangeElementsSWAP( mode, start, end, count, type, indices, clientState );
else
{
crPackExpandDrawRangeElements( mode, start, end, count, type, indices, clientState );
}
}
}
void PACKSPU_APIENTRY
packspu_DrawArrays( GLenum mode, GLint first, GLsizei count )
{
GLboolean serverArrays = GL_FALSE;
#if CR_ARB_vertex_buffer_object
GET_CONTEXT(ctx);
GLboolean lockedArrays = GL_FALSE;
/*crDebug("DrawArrays count=%d", count);*/
if (ctx->clientState->extensions.ARB_vertex_buffer_object)
serverArrays = crStateUseServerArrays();
# ifdef CR_USE_LOCKARRAYS
if (!serverArrays && !ctx->clientState->client.array.locked && (count>3))
{
crStateLockArraysEXT(first, count);
serverArrays = crStateUseServerArrays();
if (serverArrays)
{
lockedArrays = GL_TRUE;
}
else
{
crStateUnlockArraysEXT();
}
}
# endif
#endif
if (serverArrays)
{
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
/*Note the comment in packspu_LockArraysEXT*/
if (clientState->array.locked && !clientState->array.synced)
{
crPackLockArraysEXT(clientState->array.lockFirst, clientState->array.lockCount);
clientState->array.synced = GL_TRUE;
}
/* Send the DrawArrays command over the wire */
if (pack_spu.swap)
crPackDrawArraysSWAP( mode, first, count );
else
crPackDrawArrays( mode, first, count );
}
else
{
/* evaluate locally */
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
if (pack_spu.swap)
crPackExpandDrawArraysSWAP( mode, first, count, clientState );
else
crPackExpandDrawArrays( mode, first, count, clientState );
}
#if CR_ARB_vertex_buffer_object
if (lockedArrays)
{
packspu_UnlockArraysEXT();
}
#endif
}
#ifdef CR_EXT_multi_draw_arrays
void PACKSPU_APIENTRY packspu_MultiDrawArraysEXT( GLenum mode, GLint *first, GLsizei *count, GLsizei primcount )
{
GLint i;
for (i = 0; i < primcount; i++) {
if (count[i] > 0) {
packspu_DrawArrays(mode, first[i], count[i]);
}
}
}
void PACKSPU_APIENTRY packspu_MultiDrawElementsEXT( GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount )
{
GLint i;
for (i = 0; i < primcount; i++) {
if (count[i] > 0) {
packspu_DrawElements(mode, count[i], type, indices[i]);
}
}
}
#endif
void PACKSPU_APIENTRY packspu_EnableClientState( GLenum array )
{
crStateEnableClientState(array);
crPackEnableClientState(array);
}
void PACKSPU_APIENTRY packspu_DisableClientState( GLenum array )
{
crStateDisableClientState(array);
crPackDisableClientState(array);
}
void PACKSPU_APIENTRY packspu_ClientActiveTextureARB( GLenum texUnit )
{
crStateClientActiveTextureARB(texUnit);
crPackClientActiveTextureARB(texUnit);
}
void PACKSPU_APIENTRY packspu_EnableVertexAttribArrayARB(GLuint index)
{
crStateEnableVertexAttribArrayARB(index);
crPackEnableVertexAttribArrayARB(index);
}
void PACKSPU_APIENTRY packspu_DisableVertexAttribArrayARB(GLuint index)
{
crStateDisableVertexAttribArrayARB(index);
crPackDisableVertexAttribArrayARB(index);
}
void PACKSPU_APIENTRY packspu_Enable( GLenum cap )
{
if (cap!=GL_LIGHT_MODEL_TWO_SIDE)
{
crStateEnable(cap);
if (pack_spu.swap)
crPackEnableSWAP(cap);
else
crPackEnable(cap);
}
else
{
static int g_glmts1_warn=0;
if (!g_glmts1_warn)
{
crWarning("glEnable(GL_LIGHT_MODEL_TWO_SIDE) converted to valid glLightModeli(GL_LIGHT_MODEL_TWO_SIDE,1)");
g_glmts1_warn=1;
}
crStateLightModeli(GL_LIGHT_MODEL_TWO_SIDE, 1);
crPackLightModeli(GL_LIGHT_MODEL_TWO_SIDE, 1);
}
}
void PACKSPU_APIENTRY packspu_Disable( GLenum cap )
{
if (cap!=GL_LIGHT_MODEL_TWO_SIDE)
{
crStateDisable(cap);
if (pack_spu.swap)
crPackDisableSWAP(cap);
else
crPackDisable(cap);
}
else
{
static int g_glmts0_warn=0;
if (!g_glmts0_warn)
{
crWarning("glDisable(GL_LIGHT_MODEL_TWO_SIDE) converted to valid glLightModeli(GL_LIGHT_MODEL_TWO_SIDE,0)");
g_glmts0_warn=1;
}
crStateLightModeli(GL_LIGHT_MODEL_TWO_SIDE, 0);
crPackLightModeli(GL_LIGHT_MODEL_TWO_SIDE, 0);
}
}
GLboolean PACKSPU_APIENTRY packspu_IsEnabled(GLenum cap)
{
GLboolean res = crStateIsEnabled(cap);
#ifdef DEBUG
{
GET_THREAD(thread);
int writeback = 1;
GLboolean return_val = (GLboolean) 0;
crPackIsEnabled(cap, &return_val, &writeback);
packspuFlush( (void *) thread );
CRPACKSPU_WRITEBACK_WAIT(thread, writeback);
CRASSERT(return_val==res);
}
#endif
return res;
}
void PACKSPU_APIENTRY packspu_PushClientAttrib( GLbitfield mask )
{
crStatePushClientAttrib(mask);
crPackPushClientAttrib(mask);
}
void PACKSPU_APIENTRY packspu_PopClientAttrib( void )
{
crStatePopClientAttrib();
crPackPopClientAttrib();
}
void PACKSPU_APIENTRY packspu_LockArraysEXT(GLint first, GLint count)
{
if (first>=0 && count>0)
{
crStateLockArraysEXT(first, count);
/*Note: this is a workaround for quake3 based apps.
It's modifying vertex data between glLockArraysEXT and glDrawElements calls,
so we'd pass data to host right before the glDrawSomething or glBegin call.
*/
/*crPackLockArraysEXT(first, count);*/
}
else crDebug("Ignoring packspu_LockArraysEXT: first:%i, count:%i", first, count);
}
void PACKSPU_APIENTRY packspu_UnlockArraysEXT()
{
GET_CONTEXT(ctx);
CRClientState *clientState = &(ctx->clientState->client);
if (clientState->array.locked && clientState->array.synced)
{
crPackUnlockArraysEXT();
}
crStateUnlockArraysEXT();
}
|