Make a couple minor corrections to gl_API.xml. Fixes the name of an
[mesa.git] / src / glx / x11 / indirect_vertex_array.c
1 /*
2 * (C) Copyright IBM Corporation 2004, 2005
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sub license,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * IBM,
20 * AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
22 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26 #include <inttypes.h>
27 #include <assert.h>
28 #include <string.h>
29
30 #include "glxclient.h"
31 #include "indirect.h"
32 #include <GL/glxproto.h>
33 #include "glxextensions.h"
34 #include "indirect_vertex_array.h"
35 #include "indirect_va_private.h"
36
37 #define __GLX_PAD(n) (((n)+3) & ~3)
38
39 /**
40 * \file indirect_vertex_array.c
41 * Implement GLX protocol for vertex arrays and vertex buffer objects.
42 *
43 * The most important function in this fill is \c fill_array_info_cache.
44 * The \c array_state_vector contains a cache of the ARRAY_INFO data sent
45 * in the DrawArrays protocol. Certain operations, such as enabling or
46 * disabling an array, can invalidate this cache. \c fill_array_info_cache
47 * fills-in this data. Additionally, it examines the enabled state and
48 * other factors to determine what "version" of DrawArrays protocoal can be
49 * used.
50 *
51 * Current, only two versions of DrawArrays protocol are implemented. The
52 * first version is the "none" protocol. This is the fallback when the
53 * server does not support GL 1.1 / EXT_vertex_arrays. It is implemented
54 * by sending batches of immediate mode commands that are equivalent to the
55 * DrawArrays protocol.
56 *
57 * The other protocol that is currently implemented is the "old" protocol.
58 * This is the GL 1.1 DrawArrays protocol. The only difference between GL
59 * 1.1 and EXT_vertex_arrays is the opcode used for the DrawArrays command.
60 * This protocol is called "old" because the ARB is in the process of
61 * defining a new protocol, which will probably be called wither "new" or
62 * "vbo", to support multiple texture coordinate arrays, generic attributes,
63 * and vertex buffer objects.
64 *
65 * \author Ian Romanick <idr@us.ibm.com>
66 */
67
68 static void emit_DrawArrays_none( GLenum mode, GLint first, GLsizei count );
69 static void emit_DrawArrays_old ( GLenum mode, GLint first, GLsizei count );
70
71 static void emit_DrawElements_none( GLenum mode, GLsizei count, GLenum type,
72 const GLvoid *indices );
73 static void emit_DrawElements_old ( GLenum mode, GLsizei count, GLenum type,
74 const GLvoid *indices );
75
76
77 static GLubyte * emit_element_none( GLubyte * dst,
78 const struct array_state_vector * arrays, unsigned index );
79 static GLubyte * emit_element_old( GLubyte * dst,
80 const struct array_state_vector * arrays, unsigned index );
81 static struct array_state * get_array_entry(
82 const struct array_state_vector * arrays, GLenum key, unsigned index );
83 static void fill_array_info_cache( struct array_state_vector * arrays );
84 static GLboolean validate_mode(__GLXcontext *gc, GLenum mode);
85 static GLboolean validate_count(__GLXcontext *gc, GLsizei count);
86 static GLboolean validate_type(__GLXcontext *gc, GLenum type);
87
88
89 /**
90 * Table of sizes, in bytes, of a GL types. All of the type enums are be in
91 * the range 0x1400 - 0x140F. That includes types added by extensions (i.e.,
92 * \c GL_HALF_FLOAT_NV). This elements of this table correspond to the
93 * type enums masked with 0x0f.
94 *
95 * \notes
96 * \c GL_HALF_FLOAT_NV is not included. Neither are \c GL_2_BYTES,
97 * \c GL_3_BYTES, or \c GL_4_BYTES.
98 */
99 const GLuint __glXTypeSize_table[16] = {
100 1, 1, 2, 2, 4, 4, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0
101 };
102
103
104
105 /**
106 * Initialize vertex array state of a GLX context.
107 *
108 * \param gc GLX context whose vertex array state is to be initialized.
109 *
110 * \warning
111 * This function may only be called after __GLXcontext::gl_extension_bits,
112 * __GLXcontext::server_minor, and __GLXcontext::server_major have been
113 * initialized. These values are used to determine what vertex arrays are
114 * supported.
115 *
116 * \bug
117 * Return values from malloc are not properly tested.
118 */
119 void
120 __glXInitVertexArrayState( __GLXcontext * gc )
121 {
122 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
123 struct array_state_vector * arrays;
124
125 unsigned array_count;
126 unsigned texture_units = 1;
127 unsigned i;
128 unsigned j;
129 unsigned vertex_program_attribs = 0;
130
131 GLboolean got_fog = GL_FALSE;
132 GLboolean got_secondary_color = GL_FALSE;
133
134
135 arrays = calloc( 1, sizeof( struct array_state_vector ) );
136 state->array_state = arrays;
137
138 arrays->old_DrawArrays_possible = !state->NoDrawArraysProtocol;
139 arrays->new_DrawArrays_possible = GL_FALSE;
140 arrays->DrawArrays = NULL;
141
142 arrays->active_texture_unit = 0;
143
144
145 /* Determine how many arrays are actually needed. Only arrays that
146 * are supported by the server are create. For example, if the server
147 * supports only 2 texture units, then only 2 texture coordinate arrays
148 * are created.
149 *
150 * At the very least, GL_VERTEX_ARRAY, GL_NORMAL_ARRAY,
151 * GL_COLOR_ARRAY, GL_INDEX_ARRAY, GL_TEXTURE_COORD_ARRAY, and
152 * GL_EDGE_FLAG_ARRAY are supported.
153 */
154
155 array_count = 5;
156
157 if ( __glExtensionBitIsEnabled( gc, GL_EXT_fog_coord_bit )
158 || (gc->server_major > 1) || (gc->server_minor >= 4) ) {
159 got_fog = GL_TRUE;
160 array_count++;
161 }
162
163 if ( __glExtensionBitIsEnabled( gc, GL_EXT_secondary_color_bit )
164 || (gc->server_major > 1) || (gc->server_minor >= 4) ) {
165 got_secondary_color = GL_TRUE;
166 array_count++;
167 }
168
169 if ( __glExtensionBitIsEnabled( gc, GL_ARB_multitexture_bit )
170 || (gc->server_major > 1) || (gc->server_minor >= 3) ) {
171 __indirect_glGetIntegerv( GL_MAX_TEXTURE_UNITS, & texture_units );
172 }
173
174 if ( __glExtensionBitIsEnabled( gc, GL_ARB_vertex_program_bit ) ) {
175 __indirect_glGetProgramivARB( GL_VERTEX_PROGRAM_ARB,
176 GL_MAX_PROGRAM_ATTRIBS_ARB,
177 & vertex_program_attribs );
178 }
179
180 arrays->num_texture_units = texture_units;
181 arrays->num_vertex_program_attribs = vertex_program_attribs;
182 array_count += texture_units + vertex_program_attribs;
183 arrays->num_arrays = array_count;
184 arrays->arrays = calloc( array_count, sizeof( struct array_state ) );
185
186 arrays->arrays[0].data_type = GL_FLOAT;
187 arrays->arrays[0].count = 3;
188 arrays->arrays[0].key = GL_NORMAL_ARRAY;
189 arrays->arrays[0].normalized = GL_TRUE;
190 arrays->arrays[0].old_DrawArrays_possible = GL_TRUE;
191
192 arrays->arrays[1].data_type = GL_FLOAT;
193 arrays->arrays[1].count = 4;
194 arrays->arrays[1].key = GL_COLOR_ARRAY;
195 arrays->arrays[1].normalized = GL_TRUE;
196 arrays->arrays[1].old_DrawArrays_possible = GL_TRUE;
197
198 arrays->arrays[2].data_type = GL_FLOAT;
199 arrays->arrays[2].count = 1;
200 arrays->arrays[2].key = GL_INDEX_ARRAY;
201 arrays->arrays[2].old_DrawArrays_possible = GL_TRUE;
202
203 arrays->arrays[3].data_type = GL_UNSIGNED_BYTE;
204 arrays->arrays[3].count = 1;
205 arrays->arrays[3].key = GL_EDGE_FLAG_ARRAY;
206 arrays->arrays[3].old_DrawArrays_possible = GL_TRUE;
207
208 for ( i = 0 ; i < texture_units ; i++ ) {
209 arrays->arrays[4 + i].data_type = GL_FLOAT;
210 arrays->arrays[4 + i].count = 4;
211 arrays->arrays[4 + i].key = GL_TEXTURE_COORD_ARRAY;
212
213 arrays->arrays[4 + i].old_DrawArrays_possible = (i == 0);
214 arrays->arrays[4 + i].index = i;
215
216 arrays->arrays[4 + i].header[1] = i + GL_TEXTURE0;
217 }
218
219 i = 4 + texture_units;
220
221 if ( got_fog ) {
222 arrays->arrays[i].data_type = GL_FLOAT;
223 arrays->arrays[i].count = 1;
224 arrays->arrays[i].key = GL_FOG_COORDINATE_ARRAY;
225 arrays->arrays[i].old_DrawArrays_possible = GL_TRUE;
226 i++;
227 }
228
229 if ( got_secondary_color ) {
230 arrays->arrays[i].data_type = GL_FLOAT;
231 arrays->arrays[i].count = 3;
232 arrays->arrays[i].key = GL_SECONDARY_COLOR_ARRAY;
233 arrays->arrays[i].old_DrawArrays_possible = GL_TRUE;
234 arrays->arrays[i].normalized = GL_TRUE;
235 i++;
236 }
237
238
239 for ( j = 0 ; j < vertex_program_attribs ; j++ ) {
240 const unsigned idx = (vertex_program_attribs - (j + 1));
241
242
243 arrays->arrays[idx + i].data_type = GL_FLOAT;
244 arrays->arrays[idx + i].count = 4;
245 arrays->arrays[idx + i].key = GL_VERTEX_ATTRIB_ARRAY_POINTER;
246
247 arrays->arrays[idx + i].old_DrawArrays_possible = 0;
248 arrays->arrays[idx + i].index = idx;
249
250 arrays->arrays[idx + i].header[1] = idx;
251 }
252
253 i += vertex_program_attribs;
254
255
256 /* Vertex array *must* be last becuase of the way that
257 * emit_DrawArrays_none works.
258 */
259
260 arrays->arrays[i].data_type = GL_FLOAT;
261 arrays->arrays[i].count = 4;
262 arrays->arrays[i].key = GL_VERTEX_ARRAY;
263 arrays->arrays[i].old_DrawArrays_possible = GL_TRUE;
264
265 assert( (i + 1) == arrays->num_arrays );
266
267 arrays->stack_index = 0;
268 arrays->stack = malloc( sizeof( struct array_stack_state )
269 * arrays->num_arrays );
270 }
271
272
273 /**
274 * Calculate the size of a single vertex for the "none" protocol. This is
275 * essentially the size of all the immediate-mode commands required to
276 * implement the enabled vertex arrays.
277 */
278 static size_t
279 calculate_single_vertex_size_none( const struct array_state_vector * arrays )
280 {
281 size_t single_vertex_size = 0;
282 unsigned i;
283
284
285 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
286 if ( arrays->arrays[i].enabled ) {
287 single_vertex_size += ((uint16_t *)arrays->arrays[i].header)[0];
288 }
289 }
290
291 return single_vertex_size;
292 }
293
294
295 /**
296 * Emit a single element using non-DrawArrays protocol.
297 */
298 GLubyte *
299 emit_element_none( GLubyte * dst,
300 const struct array_state_vector * arrays,
301 unsigned index )
302 {
303 unsigned i;
304
305
306 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
307 if ( arrays->arrays[i].enabled ) {
308 const size_t offset = index * arrays->arrays[i].true_stride;
309
310 /* The generic attributes can have more data than is in the
311 * elements. This is because a vertex array can be a 2 element,
312 * normalized, unsigned short, but the "closest" immediate mode
313 * protocol is for a 4Nus. Since the sizes are small, the
314 * performance impact on modern processors should be negligible.
315 */
316 (void) memset( dst, 0,
317 ((uint16_t *)arrays->arrays[i].header)[0] );
318
319 (void) memcpy( dst, arrays->arrays[i].header,
320 arrays->arrays[i].header_size );
321
322 dst += arrays->arrays[i].header_size;
323
324 (void) memcpy( dst, ((GLubyte *) arrays->arrays[i].data) + offset,
325 arrays->arrays[i].element_size );
326
327 dst += __GLX_PAD( arrays->arrays[i].element_size );
328 }
329 }
330
331 return dst;
332 }
333
334
335 /**
336 * Emit a single element using "old" DrawArrays protocol from
337 * EXT_vertex_arrays / OpenGL 1.1.
338 */
339 GLubyte *
340 emit_element_old( GLubyte * dst,
341 const struct array_state_vector * arrays,
342 unsigned index )
343 {
344 unsigned i;
345
346
347 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
348 if ( arrays->arrays[i].enabled ) {
349 const size_t offset = index * arrays->arrays[i].true_stride;
350
351 (void) memcpy( dst, ((GLubyte *) arrays->arrays[i].data) + offset,
352 arrays->arrays[i].element_size );
353
354 dst += __GLX_PAD( arrays->arrays[i].element_size );
355 }
356 }
357
358 return dst;
359 }
360
361
362 struct array_state *
363 get_array_entry( const struct array_state_vector * arrays,
364 GLenum key, unsigned index )
365 {
366 unsigned i;
367
368 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
369 if ( (arrays->arrays[i].key == key)
370 && (arrays->arrays[i].index == index) ) {
371 return & arrays->arrays[i];
372 }
373 }
374
375 return NULL;
376 }
377
378
379 static GLboolean
380 allocate_array_info_cache( struct array_state_vector * arrays,
381 size_t required_size )
382 {
383 #define MAX_HEADER_SIZE 20
384 if ( arrays->array_info_cache_buffer_size < required_size ) {
385 GLubyte * temp = realloc( arrays->array_info_cache, required_size
386 + MAX_HEADER_SIZE );
387
388 if ( temp == NULL ) {
389 return GL_FALSE;
390 }
391
392 arrays->array_info_cache = temp + MAX_HEADER_SIZE;
393 arrays->array_info_cache_buffer_size = required_size;
394 }
395
396 arrays->array_info_cache_size = required_size;
397 return GL_TRUE;
398 }
399
400
401 /**
402 */
403 void
404 fill_array_info_cache( struct array_state_vector * arrays )
405 {
406 GLboolean old_DrawArrays_possible;
407 unsigned i;
408
409
410 /* Determine how many arrays are enabled.
411 */
412
413 arrays->enabled_client_array_count = 0;
414 old_DrawArrays_possible = arrays->old_DrawArrays_possible;
415 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
416 if ( arrays->arrays[i].enabled ) {
417 arrays->enabled_client_array_count++;
418 old_DrawArrays_possible &= arrays->arrays[i].old_DrawArrays_possible;
419 }
420 }
421
422
423 if ( arrays->new_DrawArrays_possible ) {
424 assert( ! arrays->new_DrawArrays_possible );
425 }
426 else if ( old_DrawArrays_possible ) {
427 const size_t required_size = arrays->enabled_client_array_count * 12;
428 uint32_t * info;
429
430
431 if ( ! allocate_array_info_cache( arrays, required_size ) ) {
432 return;
433 }
434
435
436 info = (uint32_t *) arrays->array_info_cache;
437 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
438 if ( arrays->arrays[i].enabled ) {
439 *(info++) = arrays->arrays[i].data_type;
440 *(info++) = arrays->arrays[i].count;
441 *(info++) = arrays->arrays[i].key;
442 }
443 }
444
445 arrays->DrawArrays = emit_DrawArrays_old;
446 arrays->DrawElements = emit_DrawElements_old;
447 }
448 else {
449 arrays->DrawArrays = emit_DrawArrays_none;
450 arrays->DrawElements = emit_DrawElements_none;
451 }
452
453 arrays->array_info_cache_valid = GL_TRUE;
454 }
455
456
457 /**
458 * Emit a \c glDrawArrays command using the "none" protocol. That is,
459 * emit immediate-mode commands that are equivalent to the requiested
460 * \c glDrawArrays command. This is used with servers that don't support
461 * the OpenGL 1.1 / EXT_vertex_arrays DrawArrays protocol or in cases where
462 * vertex state is enabled that is not compatible with that protocol.
463 */
464 void
465 emit_DrawArrays_none( GLenum mode, GLint first, GLsizei count )
466 {
467 __GLXcontext *gc = __glXGetCurrentContext();
468 const __GLXattribute * state =
469 (const __GLXattribute *)(gc->client_state_private);
470 struct array_state_vector * arrays = state->array_state;
471
472 size_t single_vertex_size;
473 GLubyte * pc;
474 unsigned i;
475 static const uint16_t begin_cmd[2] = { 8, X_GLrop_Begin };
476 static const uint16_t end_cmd[2] = { 4, X_GLrop_End };
477
478
479 single_vertex_size = calculate_single_vertex_size_none( arrays );
480
481 pc = gc->pc;
482
483 (void) memcpy( pc, begin_cmd, 4 );
484 *(int *)(pc + 4) = mode;
485
486 pc += 8;
487
488 for ( i = 0 ; i < count ; i++ ) {
489 if ( (pc + single_vertex_size) >= gc->bufEnd ) {
490 pc = __glXFlushRenderBuffer(gc, gc->pc);
491 }
492
493 pc = emit_element_none( pc, arrays, first + i );
494 }
495
496 if ( (pc + 4) >= gc->bufEnd ) {
497 pc = __glXFlushRenderBuffer(gc, gc->pc);
498 }
499
500 (void) memcpy( pc, end_cmd, 4 );
501 pc += 4;
502
503 gc->pc = pc;
504 if ( gc->pc > gc->limit ) {
505 (void) __glXFlushRenderBuffer(gc, gc->pc);
506 }
507 }
508
509
510 /**
511 * Emit the header data for the GL 1.1 / EXT_vertex_arrays DrawArrays
512 * protocol.
513 *
514 * \param gc GLX context.
515 * \param arrays Array state.
516 * \param elements_per_request Location to store the number of elements that
517 * can fit in a single Render / RenderLarge
518 * command.
519 * \param total_request Total number of requests for a RenderLarge
520 * command. If a Render command is used, this
521 * will be zero.
522 * \param mode Drawing mode.
523 * \param count Number of vertices.
524 *
525 * \returns
526 * A pointer to the buffer for array data.
527 */
528 static GLubyte *
529 emit_DrawArrays_header_old( __GLXcontext * gc,
530 struct array_state_vector * arrays,
531 size_t * elements_per_request,
532 size_t * total_requests,
533 GLenum mode, GLsizei count )
534 {
535 size_t command_size;
536 size_t single_vertex_size;
537 const unsigned header_size = 16;
538 unsigned i;
539 GLubyte * pc;
540
541
542 /* Determine the size of the whole command. This includes the header,
543 * the ARRAY_INFO data and the array data. Once this size is calculated,
544 * it will be known whether a Render or RenderLarge command is needed.
545 */
546
547 single_vertex_size = 0;
548 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
549 if ( arrays->arrays[i].enabled ) {
550 single_vertex_size += __GLX_PAD( arrays->arrays[i].element_size );
551 }
552 }
553
554 command_size = arrays->array_info_cache_size + header_size
555 + (single_vertex_size * count);
556
557
558 /* Write the header for either a Render command or a RenderLarge
559 * command. After the header is written, write the ARRAY_INFO data.
560 */
561
562 if ( command_size > gc->maxSmallRenderCommandSize ) {
563 /* maxSize is the maximum amount of data can be stuffed into a single
564 * packet. sz_xGLXRenderReq is added because bufSize is the maximum
565 * packet size minus sz_xGLXRenderReq.
566 */
567 const size_t maxSize = (gc->bufSize + sz_xGLXRenderReq)
568 - sz_xGLXRenderLargeReq;
569 unsigned vertex_requests;
570
571
572 /* Calculate the number of data packets that will be required to send
573 * the whole command. To do this, the number of verticies that
574 * will fit in a single buffer must be calculated.
575 *
576 * The important value here is elements_per_request. This is the
577 * number of complete array elements that will fit in a single
578 * buffer. There may be some wasted space at the end of the buffer,
579 * but splitting elements across buffer boundries would be painful.
580 */
581
582 elements_per_request[0] = maxSize / single_vertex_size;
583
584 vertex_requests = (count + elements_per_request[0] - 1)
585 / elements_per_request[0];
586
587 *total_requests = vertex_requests + 1;
588
589
590 __glXFlushRenderBuffer(gc, gc->pc);
591
592 command_size += 4;
593
594 pc = ((GLubyte *) arrays->array_info_cache) - (header_size + 4);
595 *(uint32_t *)(pc + 0) = command_size;
596 *(uint32_t *)(pc + 4) = X_GLrop_DrawArrays;
597 *(uint32_t *)(pc + 8) = count;
598 *(uint32_t *)(pc + 12) = arrays->enabled_client_array_count;
599 *(uint32_t *)(pc + 16) = mode;
600
601 __glXSendLargeChunk( gc, 1, *total_requests, pc,
602 header_size + 4 + arrays->array_info_cache_size );
603
604 pc = gc->pc;
605 }
606 else {
607 if ( (gc->pc + command_size) >= gc->bufEnd ) {
608 (void) __glXFlushRenderBuffer(gc, gc->pc);
609 }
610
611 pc = gc->pc;
612 *(uint16_t *)(pc + 0) = command_size;
613 *(uint16_t *)(pc + 2) = X_GLrop_DrawArrays;
614 *(uint32_t *)(pc + 4) = count;
615 *(uint32_t *)(pc + 8) = arrays->enabled_client_array_count;
616 *(uint32_t *)(pc + 12) = mode;
617
618 pc += header_size;
619
620 (void) memcpy( pc, arrays->array_info_cache,
621 arrays->array_info_cache_size );
622 pc += arrays->array_info_cache_size;
623
624 *elements_per_request = count;
625 *total_requests = 0;
626 }
627
628
629 return pc;
630 }
631
632
633 /**
634 */
635 void
636 emit_DrawArrays_old( GLenum mode, GLint first, GLsizei count )
637 {
638 __GLXcontext *gc = __glXGetCurrentContext();
639 const __GLXattribute * state =
640 (const __GLXattribute *)(gc->client_state_private);
641 struct array_state_vector * arrays = state->array_state;
642
643 GLubyte * pc;
644 size_t elements_per_request;
645 unsigned total_requests = 0;
646 unsigned i;
647 size_t total_sent = 0;
648
649
650 pc = emit_DrawArrays_header_old( gc, arrays, & elements_per_request,
651 & total_requests, mode, count);
652
653
654 /* Write the arrays.
655 */
656
657 if ( total_requests == 0 ) {
658 assert( elements_per_request >= count );
659
660 for ( i = 0 ; i < count ; i++ ) {
661 pc = emit_element_old( pc, arrays, i + first );
662 }
663
664 assert( pc <= gc->bufEnd );
665
666 gc->pc = pc;
667 if ( gc->pc > gc->limit ) {
668 (void) __glXFlushRenderBuffer(gc, gc->pc);
669 }
670 }
671 else {
672 unsigned req;
673
674
675 for ( req = 2 ; req <= total_requests ; req++ ) {
676 if ( count < elements_per_request ) {
677 elements_per_request = count;
678 }
679
680 pc = gc->pc;
681 for ( i = 0 ; i < elements_per_request ; i++ ) {
682 pc = emit_element_old( pc, arrays, i + first );
683 }
684
685 first += elements_per_request;
686
687 total_sent += (size_t) (pc - gc->pc);
688 __glXSendLargeChunk( gc, req, total_requests, gc->pc,
689 pc - gc->pc );
690
691 count -= elements_per_request;
692 }
693 }
694 }
695
696
697 void
698 emit_DrawElements_none( GLenum mode, GLsizei count, GLenum type,
699 const GLvoid *indices )
700 {
701 __GLXcontext *gc = __glXGetCurrentContext();
702 const __GLXattribute * state =
703 (const __GLXattribute *)(gc->client_state_private);
704 struct array_state_vector * arrays = state->array_state;
705 static const uint16_t begin_cmd[2] = { 8, X_GLrop_Begin };
706 static const uint16_t end_cmd[2] = { 4, X_GLrop_End };
707
708 GLubyte * pc;
709 size_t single_vertex_size;
710 unsigned i;
711
712
713 single_vertex_size = calculate_single_vertex_size_none( arrays );
714
715
716 if ( (gc->pc + single_vertex_size) >= gc->bufEnd ) {
717 gc->pc = __glXFlushRenderBuffer(gc, gc->pc);
718 }
719
720 pc = gc->pc;
721
722 (void) memcpy( pc, begin_cmd, 4 );
723 *(int *)(pc + 4) = mode;
724
725 pc += 8;
726
727 for ( i = 0 ; i < count ; i++ ) {
728 unsigned index = 0;
729
730 if ( (pc + single_vertex_size) >= gc->bufEnd ) {
731 pc = __glXFlushRenderBuffer(gc, gc->pc);
732 }
733
734 switch( type ) {
735 case GL_UNSIGNED_INT:
736 index = (unsigned) (((GLuint *) indices)[i]);
737 break;
738 case GL_UNSIGNED_SHORT:
739 index = (unsigned) (((GLushort *) indices)[i]);
740 break;
741 case GL_UNSIGNED_BYTE:
742 index = (unsigned) (((GLubyte *) indices)[i]);
743 break;
744 }
745 pc = emit_element_none( pc, arrays, index );
746 }
747
748 if ( (pc + 4) >= gc->bufEnd ) {
749 pc = __glXFlushRenderBuffer(gc, gc->pc);
750 }
751
752 (void) memcpy( pc, end_cmd, 4 );
753 pc += 4;
754
755 gc->pc = pc;
756 if ( gc->pc > gc->limit ) {
757 (void) __glXFlushRenderBuffer(gc, gc->pc);
758 }
759 }
760
761
762 /**
763 */
764 void
765 emit_DrawElements_old( GLenum mode, GLsizei count, GLenum type,
766 const GLvoid *indices )
767 {
768 __GLXcontext *gc = __glXGetCurrentContext();
769 const __GLXattribute * state =
770 (const __GLXattribute *)(gc->client_state_private);
771 struct array_state_vector * arrays = state->array_state;
772
773 GLubyte * pc;
774 size_t elements_per_request;
775 unsigned total_requests = 0;
776 unsigned i;
777 unsigned req;
778
779
780 pc = emit_DrawArrays_header_old( gc, arrays, & elements_per_request,
781 & total_requests, mode, count);
782
783
784 /* Write the arrays.
785 */
786
787 req = 2;
788 while ( count > 0 ) {
789 if ( count < elements_per_request ) {
790 elements_per_request = count;
791 }
792
793 switch( type ) {
794 case GL_UNSIGNED_INT: {
795 const GLuint * ui_ptr = (const GLuint *) indices;
796
797 for ( i = 0 ; i < elements_per_request ; i++ ) {
798 const GLint index = (GLint) *(ui_ptr++);
799 pc = emit_element_old( pc, arrays, index );
800 }
801 break;
802 }
803 case GL_UNSIGNED_SHORT: {
804 const GLushort * us_ptr = (const GLushort *) indices;
805
806 for ( i = 0 ; i < elements_per_request ; i++ ) {
807 const GLint index = (GLint) *(us_ptr++);
808 pc = emit_element_old( pc, arrays, index );
809 }
810 break;
811 }
812 case GL_UNSIGNED_BYTE: {
813 const GLubyte * ub_ptr = (const GLubyte *) indices;
814
815 for ( i = 0 ; i < elements_per_request ; i++ ) {
816 const GLint index = (GLint) *(ub_ptr++);
817 pc = emit_element_old( pc, arrays, index );
818 }
819 break;
820 }
821 }
822
823 if ( total_requests != 0 ) {
824 __glXSendLargeChunk( gc, req, total_requests, gc->pc,
825 pc - gc->pc );
826 pc = gc->pc;
827 req++;
828 }
829
830 count -= elements_per_request;
831 }
832
833
834 assert( (total_requests == 0) || ((req - 1) == total_requests) );
835
836 if ( total_requests == 0 ) {
837 assert( pc <= gc->bufEnd );
838
839 gc->pc = pc;
840 if ( gc->pc > gc->limit ) {
841 (void) __glXFlushRenderBuffer(gc, gc->pc);
842 }
843 }
844 }
845
846
847 /**
848 * Validate that the \c mode parameter to \c glDrawArrays, et. al. is valid.
849 * If it is not valid, then an error code is set in the GLX context.
850 *
851 * \returns
852 * \c GL_TRUE if the argument is valid, \c GL_FALSE if is not.
853 */
854 static GLboolean
855 validate_mode(__GLXcontext *gc, GLenum mode)
856 {
857 switch(mode) {
858 case GL_POINTS:
859 case GL_LINE_STRIP:
860 case GL_LINE_LOOP:
861 case GL_LINES:
862 case GL_TRIANGLE_STRIP:
863 case GL_TRIANGLE_FAN:
864 case GL_TRIANGLES:
865 case GL_QUAD_STRIP:
866 case GL_QUADS:
867 case GL_POLYGON:
868 break;
869 default:
870 __glXSetError(gc, GL_INVALID_ENUM);
871 return GL_FALSE;
872 }
873
874 return GL_TRUE;
875 }
876
877
878 /**
879 * Validate that the \c count parameter to \c glDrawArrays, et. al. is valid.
880 * A value less than zero is invalid and will result in \c GL_INVALID_VALUE
881 * being set. A value of zero will not result in an error being set, but
882 * will result in \c GL_FALSE being returned.
883 *
884 * \returns
885 * \c GL_TRUE if the argument is valid, \c GL_FALSE if it is not.
886 */
887 static GLboolean
888 validate_count(__GLXcontext *gc, GLsizei count)
889 {
890 if (count < 0) {
891 __glXSetError(gc, GL_INVALID_VALUE);
892 }
893
894 return (count > 0);
895 }
896
897
898 /**
899 * Validate that the \c type parameter to \c glDrawElements, et. al. is
900 * valid. Only \c GL_UNSIGNED_BYTE, \c GL_UNSIGNED_SHORT, and
901 * \c GL_UNSIGNED_INT are valid.
902 *
903 * \returns
904 * \c GL_TRUE if the argument is valid, \c GL_FALSE if it is not.
905 */
906 static GLboolean validate_type(__GLXcontext *gc, GLenum type)
907 {
908 switch( type ) {
909 case GL_UNSIGNED_INT:
910 case GL_UNSIGNED_SHORT:
911 case GL_UNSIGNED_BYTE:
912 return GL_TRUE;
913 default:
914 __glXSetError(gc, GL_INVALID_ENUM);
915 return GL_FALSE;
916 }
917 }
918
919
920 void __indirect_glDrawArrays(GLenum mode, GLint first, GLsizei count)
921 {
922 __GLXcontext *gc = __glXGetCurrentContext();
923 const __GLXattribute * state =
924 (const __GLXattribute *)(gc->client_state_private);
925 struct array_state_vector * arrays = state->array_state;
926
927
928 if ( validate_mode(gc, mode) && validate_count(gc, count) ) {
929 if ( ! arrays->array_info_cache_valid ) {
930 fill_array_info_cache( arrays );
931 }
932
933 arrays->DrawArrays(mode, first, count);
934 }
935 }
936
937
938 void __indirect_glArrayElement(GLint index)
939 {
940 __GLXcontext *gc = __glXGetCurrentContext();
941 const __GLXattribute * state =
942 (const __GLXattribute *)(gc->client_state_private);
943 struct array_state_vector * arrays = state->array_state;
944
945 size_t single_vertex_size;
946
947
948 single_vertex_size = calculate_single_vertex_size_none( arrays );
949
950 if ( (gc->pc + single_vertex_size) >= gc->bufEnd ) {
951 gc->pc = __glXFlushRenderBuffer(gc, gc->pc);
952 }
953
954 gc->pc = emit_element_none( gc->pc, arrays, index );
955
956 if ( gc->pc > gc->limit ) {
957 (void) __glXFlushRenderBuffer(gc, gc->pc);
958 }
959 }
960
961
962 void __indirect_glDrawElements(GLenum mode, GLsizei count, GLenum type,
963 const GLvoid *indices)
964 {
965 __GLXcontext *gc = __glXGetCurrentContext();
966 const __GLXattribute * state =
967 (const __GLXattribute *)(gc->client_state_private);
968 struct array_state_vector * arrays = state->array_state;
969
970
971 if ( validate_mode(gc, mode) && validate_count(gc, count)
972 && validate_type(gc, type) ) {
973 if ( ! arrays->array_info_cache_valid ) {
974 fill_array_info_cache( arrays );
975 }
976
977 arrays->DrawElements(mode, count, type, indices);
978 }
979 }
980
981
982 void __indirect_glDrawRangeElements(GLenum mode, GLuint start, GLuint end,
983 GLsizei count, GLenum type,
984 const GLvoid *indices)
985 {
986 __GLXcontext *gc = __glXGetCurrentContext();
987 const __GLXattribute * state =
988 (const __GLXattribute *)(gc->client_state_private);
989 struct array_state_vector * arrays = state->array_state;
990
991
992 if ( validate_mode(gc, mode) && validate_count(gc, count)
993 && validate_type(gc, type) ) {
994 if (end < start) {
995 __glXSetError(gc, GL_INVALID_VALUE);
996 return;
997 }
998
999 if ( ! arrays->array_info_cache_valid ) {
1000 fill_array_info_cache( arrays );
1001 }
1002
1003 arrays->DrawElements(mode, count, type, indices);
1004 }
1005 }
1006
1007
1008 void __indirect_glMultiDrawArraysEXT(GLenum mode, GLint *first, GLsizei *count,
1009 GLsizei primcount)
1010 {
1011 __GLXcontext *gc = __glXGetCurrentContext();
1012 const __GLXattribute * state =
1013 (const __GLXattribute *)(gc->client_state_private);
1014 struct array_state_vector * arrays = state->array_state;
1015 GLsizei i;
1016
1017
1018 if ( validate_mode(gc, mode) ) {
1019 if ( ! arrays->array_info_cache_valid ) {
1020 fill_array_info_cache( arrays );
1021 }
1022
1023 for ( i = 0 ; i < primcount ; i++ ) {
1024 if ( validate_count( gc, count[i] ) ) {
1025 arrays->DrawArrays(mode, first[i], count[i]);
1026 }
1027 }
1028 }
1029 }
1030
1031
1032 void __indirect_glMultiDrawElementsEXT(GLenum mode, const GLsizei *count,
1033 GLenum type, const GLvoid ** indices,
1034 GLsizei primcount)
1035 {
1036 __GLXcontext *gc = __glXGetCurrentContext();
1037 const __GLXattribute * state =
1038 (const __GLXattribute *)(gc->client_state_private);
1039 struct array_state_vector * arrays = state->array_state;
1040 GLsizei i;
1041
1042
1043 if ( validate_mode(gc, mode) && validate_type(gc, type) ) {
1044 if ( ! arrays->array_info_cache_valid ) {
1045 fill_array_info_cache( arrays );
1046 }
1047
1048 for ( i = 0 ; i < primcount ; i++ ) {
1049 if ( validate_count( gc, count[i] ) ) {
1050 arrays->DrawElements(mode, count[i], type, indices[i]);
1051 }
1052 }
1053 }
1054 }
1055
1056
1057 #define COMMON_ARRAY_DATA_INIT(a, PTR, TYPE, STRIDE, COUNT, NORMALIZED, HDR_SIZE, OPCODE) \
1058 do { \
1059 (a)->data = PTR; \
1060 (a)->data_type = TYPE; \
1061 (a)->user_stride = STRIDE; \
1062 (a)->count = COUNT; \
1063 (a)->normalized = NORMALIZED; \
1064 \
1065 (a)->element_size = __glXTypeSize( TYPE ) * COUNT; \
1066 (a)->true_stride = (STRIDE == 0) \
1067 ? (a)->element_size : STRIDE; \
1068 \
1069 (a)->header_size = HDR_SIZE; \
1070 ((uint16_t *) (a)->header)[0] = __GLX_PAD((a)->header_size + (a)->element_size); \
1071 ((uint16_t *) (a)->header)[1] = OPCODE; \
1072 } while(0)
1073
1074
1075 void __indirect_glVertexPointer( GLint size, GLenum type, GLsizei stride,
1076 const GLvoid * pointer )
1077 {
1078 static const uint16_t short_ops[5] = {
1079 0, 0, X_GLrop_Vertex2sv, X_GLrop_Vertex3sv, X_GLrop_Vertex4sv
1080 };
1081 static const uint16_t int_ops[5] = {
1082 0, 0, X_GLrop_Vertex2iv, X_GLrop_Vertex3iv, X_GLrop_Vertex4iv
1083 };
1084 static const uint16_t float_ops[5] = {
1085 0, 0, X_GLrop_Vertex2fv, X_GLrop_Vertex3fv, X_GLrop_Vertex4fv
1086 };
1087 static const uint16_t double_ops[5] = {
1088 0, 0, X_GLrop_Vertex2dv, X_GLrop_Vertex3dv, X_GLrop_Vertex4dv
1089 };
1090 uint16_t opcode;
1091 __GLXcontext *gc = __glXGetCurrentContext();
1092 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1093 struct array_state_vector * arrays = state->array_state;
1094 struct array_state * a;
1095
1096
1097 if (size < 2 || size > 4 || stride < 0) {
1098 __glXSetError(gc, GL_INVALID_VALUE);
1099 return;
1100 }
1101
1102 switch ( type ) {
1103 case GL_SHORT: opcode = short_ops[size]; break;
1104 case GL_INT: opcode = int_ops[size]; break;
1105 case GL_FLOAT: opcode = float_ops[size]; break;
1106 case GL_DOUBLE: opcode = double_ops[size]; break;
1107 default:
1108 __glXSetError(gc, GL_INVALID_ENUM);
1109 return;
1110 }
1111
1112 a = get_array_entry( arrays, GL_VERTEX_ARRAY, 0 );
1113 assert( a != NULL );
1114 COMMON_ARRAY_DATA_INIT( a, pointer, type, stride, size, GL_FALSE, 4,
1115 opcode );
1116
1117 if ( a->enabled ) {
1118 arrays->array_info_cache_valid = GL_FALSE;
1119 }
1120 }
1121
1122
1123 void __indirect_glNormalPointer( GLenum type, GLsizei stride,
1124 const GLvoid * pointer )
1125 {
1126 uint16_t opcode;
1127 __GLXcontext *gc = __glXGetCurrentContext();
1128 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1129 struct array_state_vector * arrays = state->array_state;
1130 struct array_state * a;
1131
1132
1133 if (stride < 0) {
1134 __glXSetError(gc, GL_INVALID_VALUE);
1135 return;
1136 }
1137
1138 switch ( type ) {
1139 case GL_BYTE: opcode = X_GLrop_Normal3bv; break;
1140 case GL_SHORT: opcode = X_GLrop_Normal3sv; break;
1141 case GL_INT: opcode = X_GLrop_Normal3iv; break;
1142 case GL_FLOAT: opcode = X_GLrop_Normal3fv; break;
1143 case GL_DOUBLE: opcode = X_GLrop_Normal3dv; break;
1144 default:
1145 __glXSetError(gc, GL_INVALID_ENUM);
1146 return;
1147 }
1148
1149 a = get_array_entry( arrays, GL_NORMAL_ARRAY, 0 );
1150 assert( a != NULL );
1151 COMMON_ARRAY_DATA_INIT( a, pointer, type, stride, 3, GL_TRUE, 4,
1152 opcode );
1153
1154 if ( a->enabled ) {
1155 arrays->array_info_cache_valid = GL_FALSE;
1156 }
1157 }
1158
1159
1160 void __indirect_glColorPointer( GLint size, GLenum type, GLsizei stride,
1161 const GLvoid * pointer )
1162 {
1163 static const uint16_t byte_ops[5] = {
1164 0, 0, 0, X_GLrop_Color3bv, X_GLrop_Color4bv
1165 };
1166 static const uint16_t ubyte_ops[5] = {
1167 0, 0, 0, X_GLrop_Color3ubv, X_GLrop_Color4ubv
1168 };
1169 static const uint16_t short_ops[5] = {
1170 0, 0, 0, X_GLrop_Color3sv, X_GLrop_Color4sv
1171 };
1172 static const uint16_t ushort_ops[5] = {
1173 0, 0, 0, X_GLrop_Color3usv, X_GLrop_Color4usv
1174 };
1175 static const uint16_t int_ops[5] = {
1176 0, 0, 0, X_GLrop_Color3iv, X_GLrop_Color4iv
1177 };
1178 static const uint16_t uint_ops[5] = {
1179 0, 0, 0, X_GLrop_Color3uiv, X_GLrop_Color4uiv
1180 };
1181 static const uint16_t float_ops[5] = {
1182 0, 0, 0, X_GLrop_Color3fv, X_GLrop_Color4fv
1183 };
1184 static const uint16_t double_ops[5] = {
1185 0, 0, 0, X_GLrop_Color3dv, X_GLrop_Color4dv
1186 };
1187 uint16_t opcode;
1188 __GLXcontext *gc = __glXGetCurrentContext();
1189 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1190 struct array_state_vector * arrays = state->array_state;
1191 struct array_state * a;
1192
1193
1194 if (size < 3 || size > 4 || stride < 0) {
1195 __glXSetError(gc, GL_INVALID_VALUE);
1196 return;
1197 }
1198
1199 switch ( type ) {
1200 case GL_BYTE: opcode = byte_ops[size]; break;
1201 case GL_UNSIGNED_BYTE: opcode = ubyte_ops[size]; break;
1202 case GL_SHORT: opcode = short_ops[size]; break;
1203 case GL_UNSIGNED_SHORT: opcode = ushort_ops[size]; break;
1204 case GL_INT: opcode = int_ops[size]; break;
1205 case GL_UNSIGNED_INT: opcode = uint_ops[size]; break;
1206 case GL_FLOAT: opcode = float_ops[size]; break;
1207 case GL_DOUBLE: opcode = double_ops[size]; break;
1208 default:
1209 __glXSetError(gc, GL_INVALID_ENUM);
1210 return;
1211 }
1212
1213 a = get_array_entry( arrays, GL_COLOR_ARRAY, 0 );
1214 assert( a != NULL );
1215 COMMON_ARRAY_DATA_INIT( a, pointer, type, stride, size, GL_TRUE, 4,
1216 opcode );
1217
1218 if ( a->enabled ) {
1219 arrays->array_info_cache_valid = GL_FALSE;
1220 }
1221 }
1222
1223
1224 void __indirect_glIndexPointer( GLenum type, GLsizei stride,
1225 const GLvoid * pointer )
1226 {
1227 uint16_t opcode;
1228 __GLXcontext *gc = __glXGetCurrentContext();
1229 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1230 struct array_state_vector * arrays = state->array_state;
1231 struct array_state * a;
1232
1233
1234 if (stride < 0) {
1235 __glXSetError(gc, GL_INVALID_VALUE);
1236 return;
1237 }
1238
1239 switch ( type ) {
1240 case GL_UNSIGNED_BYTE: opcode = X_GLrop_Indexubv; break;
1241 case GL_SHORT: opcode = X_GLrop_Indexsv; break;
1242 case GL_INT: opcode = X_GLrop_Indexiv; break;
1243 case GL_FLOAT: opcode = X_GLrop_Indexfv; break;
1244 case GL_DOUBLE: opcode = X_GLrop_Indexdv; break;
1245 default:
1246 __glXSetError(gc, GL_INVALID_ENUM);
1247 return;
1248 }
1249
1250 a = get_array_entry( arrays, GL_INDEX_ARRAY, 0 );
1251 assert( a != NULL );
1252 COMMON_ARRAY_DATA_INIT( a, pointer, type, stride, 1, GL_FALSE, 4,
1253 opcode );
1254
1255 if ( a->enabled ) {
1256 arrays->array_info_cache_valid = GL_FALSE;
1257 }
1258 }
1259
1260
1261 void __indirect_glEdgeFlagPointer( GLsizei stride, const GLvoid * pointer )
1262 {
1263 __GLXcontext *gc = __glXGetCurrentContext();
1264 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1265 struct array_state_vector * arrays = state->array_state;
1266 struct array_state * a;
1267
1268
1269 if (stride < 0) {
1270 __glXSetError(gc, GL_INVALID_VALUE);
1271 return;
1272 }
1273
1274
1275 a = get_array_entry( arrays, GL_EDGE_FLAG_ARRAY, 0 );
1276 assert( a != NULL );
1277 COMMON_ARRAY_DATA_INIT( a, pointer, GL_UNSIGNED_BYTE, stride, 1, GL_FALSE,
1278 4, X_GLrop_EdgeFlagv );
1279
1280 if ( a->enabled ) {
1281 arrays->array_info_cache_valid = GL_FALSE;
1282 }
1283 }
1284
1285
1286 void __indirect_glTexCoordPointer( GLint size, GLenum type, GLsizei stride,
1287 const GLvoid * pointer )
1288 {
1289 static const uint16_t short_ops[5] = {
1290 0, X_GLrop_TexCoord1sv, X_GLrop_TexCoord2sv, X_GLrop_TexCoord3sv, X_GLrop_TexCoord4sv
1291 };
1292 static const uint16_t int_ops[5] = {
1293 0, X_GLrop_TexCoord1iv, X_GLrop_TexCoord2iv, X_GLrop_TexCoord3iv, X_GLrop_TexCoord4iv
1294 };
1295 static const uint16_t float_ops[5] = {
1296 0, X_GLrop_TexCoord1dv, X_GLrop_TexCoord2fv, X_GLrop_TexCoord3fv, X_GLrop_TexCoord4fv
1297 };
1298 static const uint16_t double_ops[5] = {
1299 0, X_GLrop_TexCoord1dv, X_GLrop_TexCoord2dv, X_GLrop_TexCoord3dv, X_GLrop_TexCoord4dv
1300 };
1301
1302 static const uint16_t mshort_ops[5] = {
1303 0, X_GLrop_MultiTexCoord1svARB, X_GLrop_MultiTexCoord2svARB, X_GLrop_MultiTexCoord3svARB, X_GLrop_MultiTexCoord4svARB
1304 };
1305 static const uint16_t mint_ops[5] = {
1306 0, X_GLrop_MultiTexCoord1ivARB, X_GLrop_MultiTexCoord2ivARB, X_GLrop_MultiTexCoord3ivARB, X_GLrop_MultiTexCoord4ivARB
1307 };
1308 static const uint16_t mfloat_ops[5] = {
1309 0, X_GLrop_MultiTexCoord1dvARB, X_GLrop_MultiTexCoord2fvARB, X_GLrop_MultiTexCoord3fvARB, X_GLrop_MultiTexCoord4fvARB
1310 };
1311 static const uint16_t mdouble_ops[5] = {
1312 0, X_GLrop_MultiTexCoord1dvARB, X_GLrop_MultiTexCoord2dvARB, X_GLrop_MultiTexCoord3dvARB, X_GLrop_MultiTexCoord4dvARB
1313 };
1314
1315 uint16_t opcode;
1316 __GLXcontext *gc = __glXGetCurrentContext();
1317 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1318 struct array_state_vector * arrays = state->array_state;
1319 struct array_state * a;
1320 unsigned header_size;
1321 unsigned index;
1322
1323
1324 if (size < 1 || size > 4 || stride < 0) {
1325 __glXSetError(gc, GL_INVALID_VALUE);
1326 return;
1327 }
1328
1329 index = arrays->active_texture_unit;
1330 if ( index == 0 ) {
1331 switch ( type ) {
1332 case GL_SHORT: opcode = short_ops[size]; break;
1333 case GL_INT: opcode = int_ops[size]; break;
1334 case GL_FLOAT: opcode = float_ops[size]; break;
1335 case GL_DOUBLE: opcode = double_ops[size]; break;
1336 default:
1337 __glXSetError(gc, GL_INVALID_ENUM);
1338 return;
1339 }
1340
1341 header_size = 4;
1342 }
1343 else {
1344 switch ( type ) {
1345 case GL_SHORT: opcode = mshort_ops[size]; break;
1346 case GL_INT: opcode = mint_ops[size]; break;
1347 case GL_FLOAT: opcode = mfloat_ops[size]; break;
1348 case GL_DOUBLE: opcode = mdouble_ops[size]; break;
1349 default:
1350 __glXSetError(gc, GL_INVALID_ENUM);
1351 return;
1352 }
1353
1354 header_size = 8;
1355 }
1356
1357 a = get_array_entry( arrays, GL_TEXTURE_COORD_ARRAY, index );
1358 assert( a != NULL );
1359 COMMON_ARRAY_DATA_INIT( a, pointer, type, stride, size, GL_FALSE,
1360 header_size, opcode );
1361
1362 if ( a->enabled ) {
1363 arrays->array_info_cache_valid = GL_FALSE;
1364 }
1365 }
1366
1367
1368 void __indirect_glSecondaryColorPointerEXT( GLint size, GLenum type, GLsizei stride,
1369 const GLvoid * pointer )
1370 {
1371 uint16_t opcode;
1372 __GLXcontext *gc = __glXGetCurrentContext();
1373 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1374 struct array_state_vector * arrays = state->array_state;
1375 struct array_state * a;
1376
1377
1378 if (size != 3 || stride < 0) {
1379 __glXSetError(gc, GL_INVALID_VALUE);
1380 return;
1381 }
1382
1383 switch ( type ) {
1384 case GL_BYTE: opcode = 4126; break;
1385 case GL_UNSIGNED_BYTE: opcode = 4131; break;
1386 case GL_SHORT: opcode = 4127; break;
1387 case GL_UNSIGNED_SHORT: opcode = 4132; break;
1388 case GL_INT: opcode = 4128; break;
1389 case GL_UNSIGNED_INT: opcode = 4133; break;
1390 case GL_FLOAT: opcode = 4129; break;
1391 case GL_DOUBLE: opcode = 4130; break;
1392 default:
1393 __glXSetError(gc, GL_INVALID_ENUM);
1394 return;
1395 }
1396
1397 a = get_array_entry( arrays, GL_SECONDARY_COLOR_ARRAY, 0 );
1398 if ( a == NULL ) {
1399 __glXSetError(gc, GL_INVALID_OPERATION);
1400 return;
1401 }
1402
1403 COMMON_ARRAY_DATA_INIT( a, pointer, type, stride, size, GL_TRUE, 4,
1404 opcode );
1405
1406 if ( a->enabled ) {
1407 arrays->array_info_cache_valid = GL_FALSE;
1408 }
1409 }
1410
1411
1412 void __indirect_glFogCoordPointerEXT( GLenum type, GLsizei stride,
1413 const GLvoid * pointer )
1414 {
1415 uint16_t opcode;
1416 __GLXcontext *gc = __glXGetCurrentContext();
1417 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1418 struct array_state_vector * arrays = state->array_state;
1419 struct array_state * a;
1420
1421
1422 if (stride < 0) {
1423 __glXSetError(gc, GL_INVALID_VALUE);
1424 return;
1425 }
1426
1427 switch ( type ) {
1428 case GL_FLOAT: opcode = 4124; break;
1429 case GL_DOUBLE: opcode = 4125; break;
1430 default:
1431 __glXSetError(gc, GL_INVALID_ENUM);
1432 return;
1433 }
1434
1435 a = get_array_entry( arrays, GL_FOG_COORD_ARRAY, 0 );
1436 if ( a == NULL ) {
1437 __glXSetError(gc, GL_INVALID_OPERATION);
1438 return;
1439 }
1440
1441 COMMON_ARRAY_DATA_INIT( a, pointer, type, stride, 1, GL_FALSE, 4,
1442 opcode );
1443
1444 if ( a->enabled ) {
1445 arrays->array_info_cache_valid = GL_FALSE;
1446 }
1447 }
1448
1449
1450 void __indirect_glVertexAttribPointerARB(GLuint index, GLint size,
1451 GLenum type, GLboolean normalized,
1452 GLsizei stride,
1453 const GLvoid * pointer)
1454 {
1455 static const uint16_t short_ops[5] = { 0, 4189, 4190, 4191, 4192 };
1456 static const uint16_t float_ops[5] = { 0, 4193, 4194, 4195, 4196 };
1457 static const uint16_t double_ops[5] = { 0, 4197, 4198, 4199, 4200 };
1458
1459 uint16_t opcode;
1460 __GLXcontext *gc = __glXGetCurrentContext();
1461 __GLXattribute * state = (__GLXattribute *)(gc->client_state_private);
1462 struct array_state_vector * arrays = state->array_state;
1463 struct array_state * a;
1464 unsigned true_immediate_count;
1465 unsigned true_immediate_size;
1466
1467
1468 if ( (size < 1) || (size > 4) || (stride < 0)
1469 || (index > arrays->num_vertex_program_attribs) ){
1470 __glXSetError(gc, GL_INVALID_VALUE);
1471 return;
1472 }
1473
1474 if ( normalized && (type != GL_FLOAT) && (type != GL_DOUBLE)) {
1475 switch( type ) {
1476 case GL_BYTE: opcode = X_GLrop_VertexAttrib4NbvARB; break;
1477 case GL_UNSIGNED_BYTE: opcode = X_GLrop_VertexAttrib4NubvARB; break;
1478 case GL_SHORT: opcode = X_GLrop_VertexAttrib4NsvARB; break;
1479 case GL_UNSIGNED_SHORT: opcode = X_GLrop_VertexAttrib4NusvARB; break;
1480 case GL_INT: opcode = X_GLrop_VertexAttrib4NivARB; break;
1481 case GL_UNSIGNED_INT: opcode = X_GLrop_VertexAttrib4NuivARB; break;
1482 default:
1483 __glXSetError(gc, GL_INVALID_ENUM);
1484 return;
1485 }
1486
1487 true_immediate_count = 4;
1488 }
1489 else {
1490 true_immediate_count = size;
1491
1492 switch( type ) {
1493 case GL_BYTE:
1494 opcode = X_GLrop_VertexAttrib4bvARB;
1495 true_immediate_count = 4;
1496 break;
1497 case GL_UNSIGNED_BYTE:
1498 opcode = X_GLrop_VertexAttrib4ubvARB;
1499 true_immediate_count = 4;
1500 break;
1501 case GL_SHORT:
1502 opcode = short_ops[size];
1503 break;
1504 case GL_UNSIGNED_SHORT:
1505 opcode = X_GLrop_VertexAttrib4usvARB;
1506 true_immediate_count = 4;
1507 break;
1508 case GL_INT:
1509 opcode = X_GLrop_VertexAttrib4ivARB;
1510 true_immediate_count = 4;
1511 break;
1512 case GL_UNSIGNED_INT:
1513 opcode = X_GLrop_VertexAttrib4uivARB;
1514 true_immediate_count = 4;
1515 break;
1516 case GL_FLOAT:
1517 opcode = float_ops[size];
1518 break;
1519 case GL_DOUBLE:
1520 opcode = double_ops[size];
1521 break;
1522 default:
1523 __glXSetError(gc, GL_INVALID_ENUM);
1524 return;
1525 }
1526 }
1527
1528 a = get_array_entry( arrays, GL_VERTEX_ATTRIB_ARRAY_POINTER, index );
1529 if ( a == NULL ) {
1530 __glXSetError(gc, GL_INVALID_OPERATION);
1531 return;
1532 }
1533
1534 COMMON_ARRAY_DATA_INIT( a, pointer, type, stride, size, normalized, 8,
1535 opcode );
1536
1537 true_immediate_size = __glXTypeSize(type) * true_immediate_count;
1538 ((uint16_t *) (a)->header)[0] = __GLX_PAD(a->header_size
1539 + true_immediate_size);
1540
1541 if ( a->enabled ) {
1542 arrays->array_info_cache_valid = GL_FALSE;
1543 }
1544 }
1545
1546
1547 /**
1548 * I don't have 100% confidence that this is correct. The different rules
1549 * about whether or not generic vertex attributes alias "classic" vertex
1550 * attributes (i.e., attrib1 ?= primary color) between ARB_vertex_program,
1551 * ARB_vertex_shader, and NV_vertex_program are a bit confusing. My
1552 * feeling is that the client-side doesn't have to worry about it. The
1553 * client just sends all the data to the server and lets the server deal
1554 * with it.
1555 */
1556 void __indirect_glVertexAttribPointerNV( GLuint index, GLint size,
1557 GLenum type, GLsizei stride,
1558 const GLvoid * pointer)
1559 {
1560 __GLXcontext *gc = __glXGetCurrentContext();
1561 GLboolean normalized = GL_FALSE;
1562
1563
1564 switch( type ) {
1565 case GL_UNSIGNED_BYTE:
1566 if ( size != 4 ) {
1567 __glXSetError(gc, GL_INVALID_VALUE);
1568 return;
1569 }
1570 normalized = GL_TRUE;
1571
1572 case GL_SHORT:
1573 case GL_FLOAT:
1574 case GL_DOUBLE:
1575 __indirect_glVertexAttribPointerARB(index, size, type,
1576 normalized,
1577 stride, pointer);
1578 return;
1579 default:
1580 __glXSetError(gc, GL_INVALID_ENUM);
1581 return;
1582 }
1583 }
1584
1585
1586 void __indirect_glClientActiveTextureARB(GLenum texture)
1587 {
1588 __GLXcontext * const gc = __glXGetCurrentContext();
1589 __GLXattribute * const state = (__GLXattribute *)(gc->client_state_private);
1590 struct array_state_vector * const arrays = state->array_state;
1591 const GLint unit = (GLint) texture - GL_TEXTURE0;
1592
1593
1594 if ( (unit < 0) || (unit > arrays->num_texture_units) ) {
1595 __glXSetError(gc, GL_INVALID_ENUM);
1596 return;
1597 }
1598
1599 arrays->active_texture_unit = unit;
1600 }
1601
1602
1603 /**
1604 */
1605 GLboolean
1606 __glXSetArrayEnable( __GLXattribute * state,
1607 GLenum key, unsigned index, GLboolean enable )
1608 {
1609 struct array_state_vector * arrays = state->array_state;
1610 struct array_state * a;
1611
1612
1613 if ( key == GL_TEXTURE_COORD_ARRAY ) {
1614 index = arrays->active_texture_unit;
1615 }
1616
1617 a = get_array_entry( arrays, key, index );
1618
1619 if ( (a != NULL) && (a->enabled != enable) ) {
1620 a->enabled = enable;
1621 arrays->array_info_cache_valid = GL_FALSE;
1622 }
1623
1624 return (a != NULL);
1625 }
1626
1627
1628 void
1629 __glXArrayDisableAll( __GLXattribute * state )
1630 {
1631 struct array_state_vector * arrays = state->array_state;
1632 unsigned i;
1633
1634
1635 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
1636 arrays->arrays[i].enabled = GL_FALSE;
1637 }
1638
1639 arrays->array_info_cache_valid = GL_FALSE;
1640 }
1641
1642
1643 /**
1644 */
1645 GLboolean
1646 __glXGetArrayEnable( const __GLXattribute * const state,
1647 GLenum key, unsigned index, GLintptr * dest )
1648 {
1649 const struct array_state_vector * arrays = state->array_state;
1650 const struct array_state * a = get_array_entry( (struct array_state_vector *) arrays,
1651 key, index );
1652
1653 if ( a != NULL ) {
1654 *dest = (GLintptr) a->enabled;
1655 }
1656
1657 return (a != NULL);
1658 }
1659
1660
1661 /**
1662 */
1663 GLboolean
1664 __glXGetArrayType( const __GLXattribute * const state,
1665 GLenum key, unsigned index, GLintptr * dest )
1666 {
1667 const struct array_state_vector * arrays = state->array_state;
1668 const struct array_state * a = get_array_entry( (struct array_state_vector *) arrays,
1669 key, index );
1670
1671 if ( a != NULL ) {
1672 *dest = (GLintptr) a->enabled;
1673 }
1674
1675 return (a != NULL);
1676 }
1677
1678
1679 /**
1680 */
1681 GLboolean
1682 __glXGetArraySize( const __GLXattribute * const state,
1683 GLenum key, unsigned index, GLintptr * dest )
1684 {
1685 const struct array_state_vector * arrays = state->array_state;
1686 const struct array_state * a = get_array_entry( (struct array_state_vector *) arrays,
1687 key, index );
1688
1689 if ( a != NULL ) {
1690 *dest = (GLintptr) a->count;
1691 }
1692
1693 return (a != NULL);
1694 }
1695
1696
1697 /**
1698 */
1699 GLboolean
1700 __glXGetArrayStride( const __GLXattribute * const state,
1701 GLenum key, unsigned index, GLintptr * dest )
1702 {
1703 const struct array_state_vector * arrays = state->array_state;
1704 const struct array_state * a = get_array_entry( (struct array_state_vector *) arrays,
1705 key, index );
1706
1707 if ( a != NULL ) {
1708 *dest = (GLintptr) a->user_stride;
1709 }
1710
1711 return (a != NULL);
1712 }
1713
1714
1715 /**
1716 */
1717 GLboolean
1718 __glXGetArrayPointer( const __GLXattribute * const state,
1719 GLenum key, unsigned index, void ** dest )
1720 {
1721 const struct array_state_vector * arrays = state->array_state;
1722 const struct array_state * a = get_array_entry( (struct array_state_vector *) arrays,
1723 key, index );
1724
1725
1726 if ( a != NULL ) {
1727 *dest = (void *) (a->data);
1728 }
1729
1730 return (a != NULL);
1731 }
1732
1733
1734 /**
1735 */
1736 GLboolean
1737 __glXGetArrayNormalized( const __GLXattribute * const state,
1738 GLenum key, unsigned index, GLintptr * dest )
1739 {
1740 const struct array_state_vector * arrays = state->array_state;
1741 const struct array_state * a = get_array_entry( (struct array_state_vector *) arrays,
1742 key, index );
1743
1744
1745 if ( a != NULL ) {
1746 *dest = (GLintptr) a->normalized;
1747 }
1748
1749 return (a != NULL);
1750 }
1751
1752
1753 /**
1754 */
1755 GLuint
1756 __glXGetActiveTextureUnit( const __GLXattribute * const state )
1757 {
1758 return state->array_state->active_texture_unit;
1759 }
1760
1761
1762 void
1763 __glXPushArrayState( __GLXattribute * state )
1764 {
1765 struct array_state_vector * arrays = state->array_state;
1766 struct array_stack_state * stack = & arrays->stack[ (arrays->stack_index * arrays->num_arrays)];
1767 unsigned i;
1768
1769
1770 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
1771 stack[i].data = arrays->arrays[i].data;
1772 stack[i].data_type = arrays->arrays[i].data_type;
1773 stack[i].user_stride = arrays->arrays[i].user_stride;
1774 stack[i].count = arrays->arrays[i].count;
1775 stack[i].key = arrays->arrays[i].key;
1776 stack[i].enabled = arrays->arrays[i].enabled;
1777 }
1778
1779 arrays->active_texture_unit_stack[ arrays->stack_index ] =
1780 arrays->active_texture_unit;
1781
1782 arrays->stack_index++;
1783 }
1784
1785
1786 void
1787 __glXPopArrayState( __GLXattribute * state )
1788 {
1789 struct array_state_vector * arrays = state->array_state;
1790 struct array_stack_state * stack;
1791 unsigned i;
1792
1793
1794 arrays->stack_index--;
1795 stack = & arrays->stack[ (arrays->stack_index * arrays->num_arrays) ];
1796
1797 for ( i = 0 ; i < arrays->num_arrays ; i++ ) {
1798 switch ( stack[i].key ) {
1799 case GL_NORMAL_ARRAY:
1800 __indirect_glNormalPointer( stack[i].data_type,
1801 stack[i].user_stride,
1802 stack[i].data );
1803 break;
1804 case GL_COLOR_ARRAY:
1805 __indirect_glColorPointer( stack[i].count,
1806 stack[i].data_type,
1807 stack[i].user_stride,
1808 stack[i].data );
1809 break;
1810 case GL_INDEX_ARRAY:
1811 __indirect_glIndexPointer( stack[i].data_type,
1812 stack[i].user_stride,
1813 stack[i].data );
1814 break;
1815 case GL_EDGE_FLAG_ARRAY:
1816 __indirect_glEdgeFlagPointer( stack[i].user_stride,
1817 stack[i].data );
1818 break;
1819 case GL_TEXTURE_COORD_ARRAY:
1820 arrays->active_texture_unit = stack[i].index;
1821 __indirect_glTexCoordPointer( stack[i].count,
1822 stack[i].data_type,
1823 stack[i].user_stride,
1824 stack[i].data );
1825 break;
1826 case GL_SECONDARY_COLOR_ARRAY:
1827 __indirect_glSecondaryColorPointerEXT( stack[i].count,
1828 stack[i].data_type,
1829 stack[i].user_stride,
1830 stack[i].data );
1831 break;
1832 case GL_FOG_COORDINATE_ARRAY:
1833 __indirect_glFogCoordPointerEXT( stack[i].data_type,
1834 stack[i].user_stride,
1835 stack[i].data );
1836 break;
1837
1838 }
1839
1840 __glXSetArrayEnable( state, stack[i].key, stack[i].index,
1841 stack[i].enabled );
1842 }
1843
1844 arrays->active_texture_unit =
1845 arrays->active_texture_unit_stack[ arrays->stack_index ];
1846 }