vbo: remove old debug code, add comments
[mesa.git] / src / mesa / vbo / vbo_exec_api.c
1 /**************************************************************************
2
3 Copyright 2002-2008 Tungsten Graphics Inc., Cedar Park, Texas.
4
5 All Rights Reserved.
6
7 Permission is hereby granted, free of charge, to any person obtaining a
8 copy of this software and associated documentation files (the "Software"),
9 to deal in the Software without restriction, including without limitation
10 on the rights to use, copy, modify, merge, publish, distribute, sub
11 license, and/or sell copies of the Software, and to permit persons to whom
12 the Software is furnished to do so, subject to the following conditions:
13
14 The above copyright notice and this permission notice (including the next
15 paragraph) shall be included in all copies or substantial portions of the
16 Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 TUNGSTEN GRAPHICS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **************************************************************************/
27
28 /*
29 * Authors:
30 * Keith Whitwell <keith@tungstengraphics.com>
31 */
32
33 #include "main/glheader.h"
34 #include "main/bufferobj.h"
35 #include "main/context.h"
36 #include "main/macros.h"
37 #include "main/mfeatures.h"
38 #include "main/vtxfmt.h"
39 #include "main/dlist.h"
40 #include "main/eval.h"
41 #include "main/state.h"
42 #include "main/light.h"
43 #include "main/api_arrayelt.h"
44 #include "main/api_noop.h"
45 #include "main/dispatch.h"
46
47 #include "vbo_context.h"
48
49 #ifdef ERROR
50 #undef ERROR
51 #endif
52
53
54 /** ID/name for immediate-mode VBO */
55 #define IMM_BUFFER_NAME 0xaabbccdd
56
57
58 static void reset_attrfv( struct vbo_exec_context *exec );
59
60
61 /**
62 * Close off the last primitive, execute the buffer, restart the
63 * primitive.
64 */
65 static void vbo_exec_wrap_buffers( struct vbo_exec_context *exec )
66 {
67 if (exec->vtx.prim_count == 0) {
68 exec->vtx.copied.nr = 0;
69 exec->vtx.vert_count = 0;
70 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
71 }
72 else {
73 GLuint last_begin = exec->vtx.prim[exec->vtx.prim_count-1].begin;
74 GLuint last_count;
75
76 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) {
77 GLint i = exec->vtx.prim_count - 1;
78 assert(i >= 0);
79 exec->vtx.prim[i].count = (exec->vtx.vert_count -
80 exec->vtx.prim[i].start);
81 }
82
83 last_count = exec->vtx.prim[exec->vtx.prim_count-1].count;
84
85 /* Execute the buffer and save copied vertices.
86 */
87 if (exec->vtx.vert_count)
88 vbo_exec_vtx_flush( exec, GL_FALSE );
89 else {
90 exec->vtx.prim_count = 0;
91 exec->vtx.copied.nr = 0;
92 }
93
94 /* Emit a glBegin to start the new list.
95 */
96 assert(exec->vtx.prim_count == 0);
97
98 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) {
99 exec->vtx.prim[0].mode = exec->ctx->Driver.CurrentExecPrimitive;
100 exec->vtx.prim[0].start = 0;
101 exec->vtx.prim[0].count = 0;
102 exec->vtx.prim_count++;
103
104 if (exec->vtx.copied.nr == last_count)
105 exec->vtx.prim[0].begin = last_begin;
106 }
107 }
108 }
109
110
111 /**
112 * Deal with buffer wrapping where provoked by the vertex buffer
113 * filling up, as opposed to upgrade_vertex().
114 */
115 void vbo_exec_vtx_wrap( struct vbo_exec_context *exec )
116 {
117 GLfloat *data = exec->vtx.copied.buffer;
118 GLuint i;
119
120 /* Run pipeline on current vertices, copy wrapped vertices
121 * to exec->vtx.copied.
122 */
123 vbo_exec_wrap_buffers( exec );
124
125 /* Copy stored stored vertices to start of new list.
126 */
127 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr);
128
129 for (i = 0 ; i < exec->vtx.copied.nr ; i++) {
130 memcpy( exec->vtx.buffer_ptr, data,
131 exec->vtx.vertex_size * sizeof(GLfloat));
132 exec->vtx.buffer_ptr += exec->vtx.vertex_size;
133 data += exec->vtx.vertex_size;
134 exec->vtx.vert_count++;
135 }
136
137 exec->vtx.copied.nr = 0;
138 }
139
140
141 /**
142 * Copy the active vertex's values to the ctx->Current fields.
143 */
144 static void vbo_exec_copy_to_current( struct vbo_exec_context *exec )
145 {
146 struct gl_context *ctx = exec->ctx;
147 struct vbo_context *vbo = vbo_context(ctx);
148 GLuint i;
149
150 for (i = VBO_ATTRIB_POS+1 ; i < VBO_ATTRIB_MAX ; i++) {
151 if (exec->vtx.attrsz[i]) {
152 /* Note: the exec->vtx.current[i] pointers point into the
153 * ctx->Current.Attrib and ctx->Light.Material.Attrib arrays.
154 */
155 GLfloat *current = (GLfloat *)vbo->currval[i].Ptr;
156 GLfloat tmp[4];
157
158 COPY_CLEAN_4V(tmp,
159 exec->vtx.attrsz[i],
160 exec->vtx.attrptr[i]);
161
162 if (memcmp(current, tmp, sizeof(tmp)) != 0) {
163 memcpy(current, tmp, sizeof(tmp));
164
165 /* Given that we explicitly state size here, there is no need
166 * for the COPY_CLEAN above, could just copy 16 bytes and be
167 * done. The only problem is when Mesa accesses ctx->Current
168 * directly.
169 */
170 vbo->currval[i].Size = exec->vtx.attrsz[i];
171
172 /* This triggers rather too much recalculation of Mesa state
173 * that doesn't get used (eg light positions).
174 */
175 if (i >= VBO_ATTRIB_MAT_FRONT_AMBIENT &&
176 i <= VBO_ATTRIB_MAT_BACK_INDEXES)
177 ctx->NewState |= _NEW_LIGHT;
178
179 ctx->NewState |= _NEW_CURRENT_ATTRIB;
180 }
181 }
182 }
183
184 /* Colormaterial -- this kindof sucks.
185 */
186 if (ctx->Light.ColorMaterialEnabled &&
187 exec->vtx.attrsz[VBO_ATTRIB_COLOR0]) {
188 _mesa_update_color_material(ctx,
189 ctx->Current.Attrib[VBO_ATTRIB_COLOR0]);
190 }
191 }
192
193
194 /**
195 * Copy current vertex attribute values into the current vertex.
196 */
197 static void
198 vbo_exec_copy_from_current(struct vbo_exec_context *exec)
199 {
200 struct gl_context *ctx = exec->ctx;
201 struct vbo_context *vbo = vbo_context(ctx);
202 GLint i;
203
204 for (i = VBO_ATTRIB_POS + 1; i < VBO_ATTRIB_MAX; i++) {
205 const GLfloat *current = (GLfloat *) vbo->currval[i].Ptr;
206 switch (exec->vtx.attrsz[i]) {
207 case 4: exec->vtx.attrptr[i][3] = current[3];
208 case 3: exec->vtx.attrptr[i][2] = current[2];
209 case 2: exec->vtx.attrptr[i][1] = current[1];
210 case 1: exec->vtx.attrptr[i][0] = current[0];
211 break;
212 }
213 }
214 }
215
216
217 /**
218 * Flush existing data, set new attrib size, replay copied vertices.
219 * This is called when we transition from a small vertex attribute size
220 * to a larger one. Ex: glTexCoord2f -> glTexCoord4f.
221 * We need to go back over the previous 2-component texcoords and insert
222 * zero and one values.
223 */
224 static void
225 vbo_exec_wrap_upgrade_vertex(struct vbo_exec_context *exec,
226 GLuint attr, GLuint newSize )
227 {
228 struct gl_context *ctx = exec->ctx;
229 struct vbo_context *vbo = vbo_context(ctx);
230 const GLint lastcount = exec->vtx.vert_count;
231 GLfloat *old_attrptr[VBO_ATTRIB_MAX];
232 const GLuint old_vtx_size = exec->vtx.vertex_size; /* floats per vertex */
233 const GLuint oldSize = exec->vtx.attrsz[attr];
234 GLuint i;
235
236 /* Run pipeline on current vertices, copy wrapped vertices
237 * to exec->vtx.copied.
238 */
239 vbo_exec_wrap_buffers( exec );
240
241 if (unlikely(exec->vtx.copied.nr)) {
242 /* We're in the middle of a primitive, keep the old vertex
243 * format around to be able to translate the copied vertices to
244 * the new format.
245 */
246 memcpy(old_attrptr, exec->vtx.attrptr, sizeof(old_attrptr));
247 }
248
249 if (unlikely(oldSize)) {
250 /* Do a COPY_TO_CURRENT to ensure back-copying works for the
251 * case when the attribute already exists in the vertex and is
252 * having its size increased.
253 */
254 vbo_exec_copy_to_current( exec );
255 }
256
257 /* Heuristic: Attempt to isolate attributes received outside
258 * begin/end so that they don't bloat the vertices.
259 */
260 if (ctx->Driver.CurrentExecPrimitive == PRIM_OUTSIDE_BEGIN_END &&
261 !oldSize && lastcount > 8 && exec->vtx.vertex_size) {
262 vbo_exec_copy_to_current( exec );
263 reset_attrfv( exec );
264 }
265
266 /* Fix up sizes:
267 */
268 exec->vtx.attrsz[attr] = newSize;
269 exec->vtx.vertex_size += newSize - oldSize;
270 exec->vtx.max_vert = ((VBO_VERT_BUFFER_SIZE - exec->vtx.buffer_used) /
271 (exec->vtx.vertex_size * sizeof(GLfloat)));
272 exec->vtx.vert_count = 0;
273 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
274
275 if (unlikely(oldSize)) {
276 /* Size changed, recalculate all the attrptr[] values
277 */
278 GLfloat *tmp = exec->vtx.vertex;
279
280 for (i = 0 ; i < VBO_ATTRIB_MAX ; i++) {
281 if (exec->vtx.attrsz[i]) {
282 exec->vtx.attrptr[i] = tmp;
283 tmp += exec->vtx.attrsz[i];
284 }
285 else
286 exec->vtx.attrptr[i] = NULL; /* will not be dereferenced */
287 }
288
289 /* Copy from current to repopulate the vertex with correct
290 * values.
291 */
292 vbo_exec_copy_from_current( exec );
293 }
294 else {
295 /* Just have to append the new attribute at the end */
296 exec->vtx.attrptr[attr] = exec->vtx.vertex +
297 exec->vtx.vertex_size - newSize;
298 }
299
300 /* Replay stored vertices to translate them
301 * to new format here.
302 *
303 * -- No need to replay - just copy piecewise
304 */
305 if (unlikely(exec->vtx.copied.nr)) {
306 GLfloat *data = exec->vtx.copied.buffer;
307 GLfloat *dest = exec->vtx.buffer_ptr;
308 GLuint j;
309
310 assert(exec->vtx.buffer_ptr == exec->vtx.buffer_map);
311
312 for (i = 0 ; i < exec->vtx.copied.nr ; i++) {
313 for (j = 0 ; j < VBO_ATTRIB_MAX ; j++) {
314 GLuint sz = exec->vtx.attrsz[j];
315
316 if (sz) {
317 GLint old_offset = old_attrptr[j] - exec->vtx.vertex;
318 GLint new_offset = exec->vtx.attrptr[j] - exec->vtx.vertex;
319
320 if (j == attr) {
321 if (oldSize) {
322 GLfloat tmp[4];
323 COPY_CLEAN_4V(tmp, oldSize, data + old_offset);
324 COPY_SZ_4V(dest + new_offset, newSize, tmp);
325 } else {
326 GLfloat *current = (GLfloat *)vbo->currval[j].Ptr;
327 COPY_SZ_4V(dest + new_offset, sz, current);
328 }
329 }
330 else {
331 COPY_SZ_4V(dest + new_offset, sz, data + old_offset);
332 }
333 }
334 }
335
336 data += old_vtx_size;
337 dest += exec->vtx.vertex_size;
338 }
339
340 exec->vtx.buffer_ptr = dest;
341 exec->vtx.vert_count += exec->vtx.copied.nr;
342 exec->vtx.copied.nr = 0;
343 }
344 }
345
346
347 /**
348 * This is when a vertex attribute transitions to a different size.
349 * For example, we saw a bunch of glTexCoord2f() calls and now we got a
350 * glTexCoord4f() call. We promote the array from size=2 to size=4.
351 */
352 static void
353 vbo_exec_fixup_vertex(struct gl_context *ctx, GLuint attr, GLuint newSize)
354 {
355 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
356
357 if (newSize > exec->vtx.attrsz[attr]) {
358 /* New size is larger. Need to flush existing vertices and get
359 * an enlarged vertex format.
360 */
361 vbo_exec_wrap_upgrade_vertex( exec, attr, newSize );
362 }
363 else if (newSize < exec->vtx.active_sz[attr]) {
364 static const GLfloat id[4] = { 0, 0, 0, 1 };
365 GLuint i;
366
367 /* New size is smaller - just need to fill in some
368 * zeros. Don't need to flush or wrap.
369 */
370 for (i = newSize; i <= exec->vtx.attrsz[attr]; i++)
371 exec->vtx.attrptr[attr][i-1] = id[i-1];
372 }
373
374 exec->vtx.active_sz[attr] = newSize;
375
376 /* Does setting NeedFlush belong here? Necessitates resetting
377 * vtxfmt on each flush (otherwise flags won't get reset
378 * afterwards).
379 */
380 if (attr == 0)
381 exec->ctx->Driver.NeedFlush |= FLUSH_STORED_VERTICES;
382 }
383
384
385 /**
386 * This macro is used to implement all the glVertex, glColor, glTexCoord,
387 * glVertexAttrib, etc functions.
388 */
389 #define ATTR( A, N, V0, V1, V2, V3 ) \
390 do { \
391 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; \
392 \
393 if (unlikely(!(ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT))) \
394 ctx->Driver.BeginVertices( ctx ); \
395 \
396 if (unlikely(exec->vtx.active_sz[A] != N)) \
397 vbo_exec_fixup_vertex(ctx, A, N); \
398 \
399 { \
400 GLfloat *dest = exec->vtx.attrptr[A]; \
401 if (N>0) dest[0] = V0; \
402 if (N>1) dest[1] = V1; \
403 if (N>2) dest[2] = V2; \
404 if (N>3) dest[3] = V3; \
405 } \
406 \
407 if ((A) == 0) { \
408 /* This is a glVertex call */ \
409 GLuint i; \
410 \
411 for (i = 0; i < exec->vtx.vertex_size; i++) \
412 exec->vtx.buffer_ptr[i] = exec->vtx.vertex[i]; \
413 \
414 exec->vtx.buffer_ptr += exec->vtx.vertex_size; \
415 \
416 /* Set FLUSH_STORED_VERTICES to indicate that there's now */ \
417 /* something to draw (not just updating a color or texcoord).*/ \
418 ctx->Driver.NeedFlush |= FLUSH_STORED_VERTICES; \
419 \
420 if (++exec->vtx.vert_count >= exec->vtx.max_vert) \
421 vbo_exec_vtx_wrap( exec ); \
422 } \
423 } while (0)
424
425
426 #define ERROR() _mesa_error( ctx, GL_INVALID_ENUM, __FUNCTION__ )
427 #define TAG(x) vbo_##x
428
429 #include "vbo_attrib_tmp.h"
430
431
432 #if FEATURE_beginend
433
434
435 #if FEATURE_evaluators
436
437 static void GLAPIENTRY vbo_exec_EvalCoord1f( GLfloat u )
438 {
439 GET_CURRENT_CONTEXT( ctx );
440 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
441
442 {
443 GLint i;
444 if (exec->eval.recalculate_maps)
445 vbo_exec_eval_update( exec );
446
447 for (i = 0; i <= VBO_ATTRIB_TEX7; i++) {
448 if (exec->eval.map1[i].map)
449 if (exec->vtx.active_sz[i] != exec->eval.map1[i].sz)
450 vbo_exec_fixup_vertex( ctx, i, exec->eval.map1[i].sz );
451 }
452 }
453
454
455 memcpy( exec->vtx.copied.buffer, exec->vtx.vertex,
456 exec->vtx.vertex_size * sizeof(GLfloat));
457
458 vbo_exec_do_EvalCoord1f( exec, u );
459
460 memcpy( exec->vtx.vertex, exec->vtx.copied.buffer,
461 exec->vtx.vertex_size * sizeof(GLfloat));
462 }
463
464 static void GLAPIENTRY vbo_exec_EvalCoord2f( GLfloat u, GLfloat v )
465 {
466 GET_CURRENT_CONTEXT( ctx );
467 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
468
469 {
470 GLint i;
471 if (exec->eval.recalculate_maps)
472 vbo_exec_eval_update( exec );
473
474 for (i = 0; i <= VBO_ATTRIB_TEX7; i++) {
475 if (exec->eval.map2[i].map)
476 if (exec->vtx.active_sz[i] != exec->eval.map2[i].sz)
477 vbo_exec_fixup_vertex( ctx, i, exec->eval.map2[i].sz );
478 }
479
480 if (ctx->Eval.AutoNormal)
481 if (exec->vtx.active_sz[VBO_ATTRIB_NORMAL] != 3)
482 vbo_exec_fixup_vertex( ctx, VBO_ATTRIB_NORMAL, 3 );
483 }
484
485 memcpy( exec->vtx.copied.buffer, exec->vtx.vertex,
486 exec->vtx.vertex_size * sizeof(GLfloat));
487
488 vbo_exec_do_EvalCoord2f( exec, u, v );
489
490 memcpy( exec->vtx.vertex, exec->vtx.copied.buffer,
491 exec->vtx.vertex_size * sizeof(GLfloat));
492 }
493
494 static void GLAPIENTRY vbo_exec_EvalCoord1fv( const GLfloat *u )
495 {
496 vbo_exec_EvalCoord1f( u[0] );
497 }
498
499 static void GLAPIENTRY vbo_exec_EvalCoord2fv( const GLfloat *u )
500 {
501 vbo_exec_EvalCoord2f( u[0], u[1] );
502 }
503
504 static void GLAPIENTRY vbo_exec_EvalPoint1( GLint i )
505 {
506 GET_CURRENT_CONTEXT( ctx );
507 GLfloat du = ((ctx->Eval.MapGrid1u2 - ctx->Eval.MapGrid1u1) /
508 (GLfloat) ctx->Eval.MapGrid1un);
509 GLfloat u = i * du + ctx->Eval.MapGrid1u1;
510
511 vbo_exec_EvalCoord1f( u );
512 }
513
514
515 static void GLAPIENTRY vbo_exec_EvalPoint2( GLint i, GLint j )
516 {
517 GET_CURRENT_CONTEXT( ctx );
518 GLfloat du = ((ctx->Eval.MapGrid2u2 - ctx->Eval.MapGrid2u1) /
519 (GLfloat) ctx->Eval.MapGrid2un);
520 GLfloat dv = ((ctx->Eval.MapGrid2v2 - ctx->Eval.MapGrid2v1) /
521 (GLfloat) ctx->Eval.MapGrid2vn);
522 GLfloat u = i * du + ctx->Eval.MapGrid2u1;
523 GLfloat v = j * dv + ctx->Eval.MapGrid2v1;
524
525 vbo_exec_EvalCoord2f( u, v );
526 }
527
528 /* use noop eval mesh */
529 #define vbo_exec_EvalMesh1 _mesa_noop_EvalMesh1
530 #define vbo_exec_EvalMesh2 _mesa_noop_EvalMesh2
531
532 #endif /* FEATURE_evaluators */
533
534
535 /**
536 * Called via glBegin.
537 */
538 static void GLAPIENTRY vbo_exec_Begin( GLenum mode )
539 {
540 GET_CURRENT_CONTEXT( ctx );
541
542 if (ctx->Driver.CurrentExecPrimitive == PRIM_OUTSIDE_BEGIN_END) {
543 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
544 int i;
545
546 if (ctx->NewState) {
547 _mesa_update_state( ctx );
548
549 CALL_Begin(ctx->Exec, (mode));
550 return;
551 }
552
553 if (!_mesa_valid_to_render(ctx, "glBegin")) {
554 return;
555 }
556
557 /* Heuristic: attempt to isolate attributes occuring outside
558 * begin/end pairs.
559 */
560 if (exec->vtx.vertex_size && !exec->vtx.attrsz[0])
561 vbo_exec_FlushVertices_internal( ctx, GL_FALSE );
562
563 i = exec->vtx.prim_count++;
564 exec->vtx.prim[i].mode = mode;
565 exec->vtx.prim[i].begin = 1;
566 exec->vtx.prim[i].end = 0;
567 exec->vtx.prim[i].indexed = 0;
568 exec->vtx.prim[i].weak = 0;
569 exec->vtx.prim[i].pad = 0;
570 exec->vtx.prim[i].start = exec->vtx.vert_count;
571 exec->vtx.prim[i].count = 0;
572 exec->vtx.prim[i].num_instances = 1;
573
574 ctx->Driver.CurrentExecPrimitive = mode;
575 }
576 else
577 _mesa_error( ctx, GL_INVALID_OPERATION, "glBegin" );
578
579 }
580
581
582 /**
583 * Called via glEnd.
584 */
585 static void GLAPIENTRY vbo_exec_End( void )
586 {
587 GET_CURRENT_CONTEXT( ctx );
588
589 if (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) {
590 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
591 int idx = exec->vtx.vert_count;
592 int i = exec->vtx.prim_count - 1;
593
594 exec->vtx.prim[i].end = 1;
595 exec->vtx.prim[i].count = idx - exec->vtx.prim[i].start;
596
597 ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END;
598
599 if (exec->vtx.prim_count == VBO_MAX_PRIM)
600 vbo_exec_vtx_flush( exec, GL_FALSE );
601 }
602 else
603 _mesa_error( ctx, GL_INVALID_OPERATION, "glEnd" );
604 }
605
606
607 /**
608 * Called via glPrimitiveRestartNV()
609 */
610 static void GLAPIENTRY
611 vbo_exec_PrimitiveRestartNV(void)
612 {
613 GLenum curPrim;
614 GET_CURRENT_CONTEXT( ctx );
615
616 curPrim = ctx->Driver.CurrentExecPrimitive;
617
618 if (curPrim == PRIM_OUTSIDE_BEGIN_END) {
619 _mesa_error( ctx, GL_INVALID_OPERATION, "glPrimitiveRestartNV" );
620 }
621 else {
622 vbo_exec_End();
623 vbo_exec_Begin(curPrim);
624 }
625 }
626
627
628
629 static void vbo_exec_vtxfmt_init( struct vbo_exec_context *exec )
630 {
631 GLvertexformat *vfmt = &exec->vtxfmt;
632
633 _MESA_INIT_ARRAYELT_VTXFMT(vfmt, _ae_);
634
635 vfmt->Begin = vbo_exec_Begin;
636 vfmt->End = vbo_exec_End;
637 vfmt->PrimitiveRestartNV = vbo_exec_PrimitiveRestartNV;
638
639 _MESA_INIT_DLIST_VTXFMT(vfmt, _mesa_);
640 _MESA_INIT_EVAL_VTXFMT(vfmt, vbo_exec_);
641
642 vfmt->Rectf = _mesa_noop_Rectf;
643
644 /* from attrib_tmp.h:
645 */
646 vfmt->Color3f = vbo_Color3f;
647 vfmt->Color3fv = vbo_Color3fv;
648 vfmt->Color4f = vbo_Color4f;
649 vfmt->Color4fv = vbo_Color4fv;
650 vfmt->FogCoordfEXT = vbo_FogCoordfEXT;
651 vfmt->FogCoordfvEXT = vbo_FogCoordfvEXT;
652 vfmt->MultiTexCoord1fARB = vbo_MultiTexCoord1f;
653 vfmt->MultiTexCoord1fvARB = vbo_MultiTexCoord1fv;
654 vfmt->MultiTexCoord2fARB = vbo_MultiTexCoord2f;
655 vfmt->MultiTexCoord2fvARB = vbo_MultiTexCoord2fv;
656 vfmt->MultiTexCoord3fARB = vbo_MultiTexCoord3f;
657 vfmt->MultiTexCoord3fvARB = vbo_MultiTexCoord3fv;
658 vfmt->MultiTexCoord4fARB = vbo_MultiTexCoord4f;
659 vfmt->MultiTexCoord4fvARB = vbo_MultiTexCoord4fv;
660 vfmt->Normal3f = vbo_Normal3f;
661 vfmt->Normal3fv = vbo_Normal3fv;
662 vfmt->SecondaryColor3fEXT = vbo_SecondaryColor3fEXT;
663 vfmt->SecondaryColor3fvEXT = vbo_SecondaryColor3fvEXT;
664 vfmt->TexCoord1f = vbo_TexCoord1f;
665 vfmt->TexCoord1fv = vbo_TexCoord1fv;
666 vfmt->TexCoord2f = vbo_TexCoord2f;
667 vfmt->TexCoord2fv = vbo_TexCoord2fv;
668 vfmt->TexCoord3f = vbo_TexCoord3f;
669 vfmt->TexCoord3fv = vbo_TexCoord3fv;
670 vfmt->TexCoord4f = vbo_TexCoord4f;
671 vfmt->TexCoord4fv = vbo_TexCoord4fv;
672 vfmt->Vertex2f = vbo_Vertex2f;
673 vfmt->Vertex2fv = vbo_Vertex2fv;
674 vfmt->Vertex3f = vbo_Vertex3f;
675 vfmt->Vertex3fv = vbo_Vertex3fv;
676 vfmt->Vertex4f = vbo_Vertex4f;
677 vfmt->Vertex4fv = vbo_Vertex4fv;
678
679 vfmt->VertexAttrib1fARB = vbo_VertexAttrib1fARB;
680 vfmt->VertexAttrib1fvARB = vbo_VertexAttrib1fvARB;
681 vfmt->VertexAttrib2fARB = vbo_VertexAttrib2fARB;
682 vfmt->VertexAttrib2fvARB = vbo_VertexAttrib2fvARB;
683 vfmt->VertexAttrib3fARB = vbo_VertexAttrib3fARB;
684 vfmt->VertexAttrib3fvARB = vbo_VertexAttrib3fvARB;
685 vfmt->VertexAttrib4fARB = vbo_VertexAttrib4fARB;
686 vfmt->VertexAttrib4fvARB = vbo_VertexAttrib4fvARB;
687
688 vfmt->VertexAttrib1fNV = vbo_VertexAttrib1fNV;
689 vfmt->VertexAttrib1fvNV = vbo_VertexAttrib1fvNV;
690 vfmt->VertexAttrib2fNV = vbo_VertexAttrib2fNV;
691 vfmt->VertexAttrib2fvNV = vbo_VertexAttrib2fvNV;
692 vfmt->VertexAttrib3fNV = vbo_VertexAttrib3fNV;
693 vfmt->VertexAttrib3fvNV = vbo_VertexAttrib3fvNV;
694 vfmt->VertexAttrib4fNV = vbo_VertexAttrib4fNV;
695 vfmt->VertexAttrib4fvNV = vbo_VertexAttrib4fvNV;
696
697 /* integer-valued */
698 vfmt->VertexAttribI1i = vbo_VertexAttribI1i;
699 vfmt->VertexAttribI2i = vbo_VertexAttribI2i;
700 vfmt->VertexAttribI3i = vbo_VertexAttribI3i;
701 vfmt->VertexAttribI4i = vbo_VertexAttribI4i;
702 vfmt->VertexAttribI2iv = vbo_VertexAttribI2iv;
703 vfmt->VertexAttribI3iv = vbo_VertexAttribI3iv;
704 vfmt->VertexAttribI4iv = vbo_VertexAttribI4iv;
705
706 /* unsigned integer-valued */
707 vfmt->VertexAttribI1ui = vbo_VertexAttribI1ui;
708 vfmt->VertexAttribI2ui = vbo_VertexAttribI2ui;
709 vfmt->VertexAttribI3ui = vbo_VertexAttribI3ui;
710 vfmt->VertexAttribI4ui = vbo_VertexAttribI4ui;
711 vfmt->VertexAttribI2uiv = vbo_VertexAttribI2uiv;
712 vfmt->VertexAttribI3uiv = vbo_VertexAttribI3uiv;
713 vfmt->VertexAttribI4uiv = vbo_VertexAttribI4uiv;
714
715 vfmt->Materialfv = vbo_Materialfv;
716
717 vfmt->EdgeFlag = vbo_EdgeFlag;
718 vfmt->Indexf = vbo_Indexf;
719 vfmt->Indexfv = vbo_Indexfv;
720
721 }
722
723
724 #else /* FEATURE_beginend */
725
726
727 static void vbo_exec_vtxfmt_init( struct vbo_exec_context *exec )
728 {
729 /* silence warnings */
730 (void) vbo_Color3f;
731 (void) vbo_Color3fv;
732 (void) vbo_Color4f;
733 (void) vbo_Color4fv;
734 (void) vbo_FogCoordfEXT;
735 (void) vbo_FogCoordfvEXT;
736 (void) vbo_MultiTexCoord1f;
737 (void) vbo_MultiTexCoord1fv;
738 (void) vbo_MultiTexCoord2f;
739 (void) vbo_MultiTexCoord2fv;
740 (void) vbo_MultiTexCoord3f;
741 (void) vbo_MultiTexCoord3fv;
742 (void) vbo_MultiTexCoord4f;
743 (void) vbo_MultiTexCoord4fv;
744 (void) vbo_Normal3f;
745 (void) vbo_Normal3fv;
746 (void) vbo_SecondaryColor3fEXT;
747 (void) vbo_SecondaryColor3fvEXT;
748 (void) vbo_TexCoord1f;
749 (void) vbo_TexCoord1fv;
750 (void) vbo_TexCoord2f;
751 (void) vbo_TexCoord2fv;
752 (void) vbo_TexCoord3f;
753 (void) vbo_TexCoord3fv;
754 (void) vbo_TexCoord4f;
755 (void) vbo_TexCoord4fv;
756 (void) vbo_Vertex2f;
757 (void) vbo_Vertex2fv;
758 (void) vbo_Vertex3f;
759 (void) vbo_Vertex3fv;
760 (void) vbo_Vertex4f;
761 (void) vbo_Vertex4fv;
762
763 (void) vbo_VertexAttrib1fARB;
764 (void) vbo_VertexAttrib1fvARB;
765 (void) vbo_VertexAttrib2fARB;
766 (void) vbo_VertexAttrib2fvARB;
767 (void) vbo_VertexAttrib3fARB;
768 (void) vbo_VertexAttrib3fvARB;
769 (void) vbo_VertexAttrib4fARB;
770 (void) vbo_VertexAttrib4fvARB;
771
772 (void) vbo_VertexAttrib1fNV;
773 (void) vbo_VertexAttrib1fvNV;
774 (void) vbo_VertexAttrib2fNV;
775 (void) vbo_VertexAttrib2fvNV;
776 (void) vbo_VertexAttrib3fNV;
777 (void) vbo_VertexAttrib3fvNV;
778 (void) vbo_VertexAttrib4fNV;
779 (void) vbo_VertexAttrib4fvNV;
780
781 (void) vbo_Materialfv;
782
783 (void) vbo_EdgeFlag;
784 (void) vbo_Indexf;
785 (void) vbo_Indexfv;
786 }
787
788
789 #endif /* FEATURE_beginend */
790
791
792 /**
793 * Tell the VBO module to use a real OpenGL vertex buffer object to
794 * store accumulated immediate-mode vertex data.
795 * This replaces the malloced buffer which was created in
796 * vb_exec_vtx_init() below.
797 */
798 void vbo_use_buffer_objects(struct gl_context *ctx)
799 {
800 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
801 /* Any buffer name but 0 can be used here since this bufferobj won't
802 * go into the bufferobj hashtable.
803 */
804 GLuint bufName = IMM_BUFFER_NAME;
805 GLenum target = GL_ARRAY_BUFFER_ARB;
806 GLenum usage = GL_STREAM_DRAW_ARB;
807 GLsizei size = VBO_VERT_BUFFER_SIZE;
808
809 /* Make sure this func is only used once */
810 assert(exec->vtx.bufferobj == ctx->Shared->NullBufferObj);
811 if (exec->vtx.buffer_map) {
812 _mesa_align_free(exec->vtx.buffer_map);
813 exec->vtx.buffer_map = NULL;
814 exec->vtx.buffer_ptr = NULL;
815 }
816
817 /* Allocate a real buffer object now */
818 _mesa_reference_buffer_object(ctx, &exec->vtx.bufferobj, NULL);
819 exec->vtx.bufferobj = ctx->Driver.NewBufferObject(ctx, bufName, target);
820 ctx->Driver.BufferData(ctx, target, size, NULL, usage, exec->vtx.bufferobj);
821 }
822
823
824
825 void vbo_exec_vtx_init( struct vbo_exec_context *exec )
826 {
827 struct gl_context *ctx = exec->ctx;
828 struct vbo_context *vbo = vbo_context(ctx);
829 GLuint i;
830
831 /* Allocate a buffer object. Will just reuse this object
832 * continuously, unless vbo_use_buffer_objects() is called to enable
833 * use of real VBOs.
834 */
835 _mesa_reference_buffer_object(ctx,
836 &exec->vtx.bufferobj,
837 ctx->Shared->NullBufferObj);
838
839 ASSERT(!exec->vtx.buffer_map);
840 exec->vtx.buffer_map = (GLfloat *)_mesa_align_malloc(VBO_VERT_BUFFER_SIZE, 64);
841 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
842
843 vbo_exec_vtxfmt_init( exec );
844
845 /* Hook our functions into the dispatch table.
846 */
847 _mesa_install_exec_vtxfmt( exec->ctx, &exec->vtxfmt );
848
849 for (i = 0 ; i < VBO_ATTRIB_MAX ; i++) {
850 ASSERT(i < Elements(exec->vtx.attrsz));
851 exec->vtx.attrsz[i] = 0;
852 ASSERT(i < Elements(exec->vtx.active_sz));
853 exec->vtx.active_sz[i] = 0;
854 }
855 for (i = 0 ; i < VERT_ATTRIB_MAX; i++) {
856 ASSERT(i < Elements(exec->vtx.inputs));
857 ASSERT(i < Elements(exec->vtx.arrays));
858 exec->vtx.inputs[i] = &exec->vtx.arrays[i];
859 }
860
861 {
862 struct gl_client_array *arrays = exec->vtx.arrays;
863 unsigned i;
864
865 memcpy(arrays, vbo->legacy_currval, 16 * sizeof(arrays[0]));
866 memcpy(arrays + 16, vbo->generic_currval, 16 * sizeof(arrays[0]));
867
868 for (i = 0; i < 16; ++i) {
869 arrays[i ].BufferObj = NULL;
870 arrays[i + 16].BufferObj = NULL;
871 _mesa_reference_buffer_object(ctx, &arrays[i ].BufferObj,
872 vbo->legacy_currval[i].BufferObj);
873 _mesa_reference_buffer_object(ctx, &arrays[i + 16].BufferObj,
874 vbo->generic_currval[i].BufferObj);
875 }
876 }
877
878 exec->vtx.vertex_size = 0;
879 }
880
881
882 void vbo_exec_vtx_destroy( struct vbo_exec_context *exec )
883 {
884 /* using a real VBO for vertex data */
885 struct gl_context *ctx = exec->ctx;
886 unsigned i;
887
888 /* True VBOs should already be unmapped
889 */
890 if (exec->vtx.buffer_map) {
891 ASSERT(exec->vtx.bufferobj->Name == 0 ||
892 exec->vtx.bufferobj->Name == IMM_BUFFER_NAME);
893 if (exec->vtx.bufferobj->Name == 0) {
894 _mesa_align_free(exec->vtx.buffer_map);
895 exec->vtx.buffer_map = NULL;
896 exec->vtx.buffer_ptr = NULL;
897 }
898 }
899
900 /* Drop any outstanding reference to the vertex buffer
901 */
902 for (i = 0; i < Elements(exec->vtx.arrays); i++) {
903 _mesa_reference_buffer_object(ctx,
904 &exec->vtx.arrays[i].BufferObj,
905 NULL);
906 }
907
908 /* Free the vertex buffer. Unmap first if needed.
909 */
910 if (_mesa_bufferobj_mapped(exec->vtx.bufferobj)) {
911 ctx->Driver.UnmapBuffer(ctx, GL_ARRAY_BUFFER, exec->vtx.bufferobj);
912 }
913 _mesa_reference_buffer_object(ctx, &exec->vtx.bufferobj, NULL);
914 }
915
916
917 void vbo_exec_BeginVertices( struct gl_context *ctx )
918 {
919 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
920
921 vbo_exec_vtx_map( exec );
922
923 assert((exec->ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT) == 0);
924 exec->ctx->Driver.NeedFlush |= FLUSH_UPDATE_CURRENT;
925 }
926
927
928 /**
929 * Flush (draw) vertices.
930 * \param unmap - leave VBO unmapped after flushing?
931 */
932 void vbo_exec_FlushVertices_internal( struct gl_context *ctx, GLboolean unmap )
933 {
934 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
935
936 if (exec->vtx.vert_count || unmap) {
937 vbo_exec_vtx_flush( exec, unmap );
938 }
939
940 if (exec->vtx.vertex_size) {
941 vbo_exec_copy_to_current( exec );
942 reset_attrfv( exec );
943 }
944 }
945
946
947 /**
948 * \param flags bitmask of FLUSH_STORED_VERTICES, FLUSH_UPDATE_CURRENT
949 */
950 void vbo_exec_FlushVertices( struct gl_context *ctx, GLuint flags )
951 {
952 struct vbo_exec_context *exec = &vbo_context(ctx)->exec;
953
954 #ifdef DEBUG
955 /* debug check: make sure we don't get called recursively */
956 exec->flush_call_depth++;
957 assert(exec->flush_call_depth == 1);
958 #endif
959
960 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) {
961 #ifdef DEBUG
962 exec->flush_call_depth--;
963 assert(exec->flush_call_depth == 0);
964 #endif
965 return;
966 }
967
968 /* Flush (draw), and make sure VBO is left unmapped when done */
969 vbo_exec_FlushVertices_internal( ctx, GL_TRUE );
970
971 /* Need to do this to ensure BeginVertices gets called again:
972 */
973 if (exec->ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT)
974 exec->ctx->Driver.NeedFlush &= ~FLUSH_UPDATE_CURRENT;
975
976 exec->ctx->Driver.NeedFlush &= ~flags;
977
978 #ifdef DEBUG
979 exec->flush_call_depth--;
980 assert(exec->flush_call_depth == 0);
981 #endif
982 }
983
984
985 static void reset_attrfv( struct vbo_exec_context *exec )
986 {
987 GLuint i;
988
989 for (i = 0 ; i < VBO_ATTRIB_MAX ; i++) {
990 exec->vtx.attrsz[i] = 0;
991 exec->vtx.active_sz[i] = 0;
992 }
993
994 exec->vtx.vertex_size = 0;
995 }
996
997
998 void GLAPIENTRY
999 _es_Color4f(GLfloat r, GLfloat g, GLfloat b, GLfloat a)
1000 {
1001 vbo_Color4f(r, g, b, a);
1002 }
1003
1004
1005 void GLAPIENTRY
1006 _es_Normal3f(GLfloat x, GLfloat y, GLfloat z)
1007 {
1008 vbo_Normal3f(x, y, z);
1009 }
1010
1011
1012 void GLAPIENTRY
1013 _es_MultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q)
1014 {
1015 vbo_MultiTexCoord4f(target, s, t, r, q);
1016 }
1017
1018
1019 void GLAPIENTRY
1020 _es_Materialfv(GLenum face, GLenum pname, const GLfloat *params)
1021 {
1022 vbo_Materialfv(face, pname, params);
1023 }
1024
1025
1026 void GLAPIENTRY
1027 _es_Materialf(GLenum face, GLenum pname, GLfloat param)
1028 {
1029 GLfloat p[4];
1030 p[0] = param;
1031 p[1] = p[2] = p[3] = 0.0F;
1032 vbo_Materialfv(face, pname, p);
1033 }
1034
1035
1036 /**
1037 * A special version of glVertexAttrib4f that does not treat index 0 as
1038 * VBO_ATTRIB_POS.
1039 */
1040 static void
1041 VertexAttrib4f_nopos(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
1042 {
1043 GET_CURRENT_CONTEXT(ctx);
1044 if (index < MAX_VERTEX_GENERIC_ATTRIBS)
1045 ATTR(VBO_ATTRIB_GENERIC0 + index, 4, x, y, z, w);
1046 else
1047 ERROR();
1048 }
1049
1050 void GLAPIENTRY
1051 _es_VertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
1052 {
1053 VertexAttrib4f_nopos(index, x, y, z, w);
1054 }
1055
1056
1057 void GLAPIENTRY
1058 _es_VertexAttrib1f(GLuint indx, GLfloat x)
1059 {
1060 VertexAttrib4f_nopos(indx, x, 0.0f, 0.0f, 1.0f);
1061 }
1062
1063
1064 void GLAPIENTRY
1065 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values)
1066 {
1067 VertexAttrib4f_nopos(indx, values[0], 0.0f, 0.0f, 1.0f);
1068 }
1069
1070
1071 void GLAPIENTRY
1072 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y)
1073 {
1074 VertexAttrib4f_nopos(indx, x, y, 0.0f, 1.0f);
1075 }
1076
1077
1078 void GLAPIENTRY
1079 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values)
1080 {
1081 VertexAttrib4f_nopos(indx, values[0], values[1], 0.0f, 1.0f);
1082 }
1083
1084
1085 void GLAPIENTRY
1086 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z)
1087 {
1088 VertexAttrib4f_nopos(indx, x, y, z, 1.0f);
1089 }
1090
1091
1092 void GLAPIENTRY
1093 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values)
1094 {
1095 VertexAttrib4f_nopos(indx, values[0], values[1], values[2], 1.0f);
1096 }
1097
1098
1099 void GLAPIENTRY
1100 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values)
1101 {
1102 VertexAttrib4f_nopos(indx, values[0], values[1], values[2], values[3]);
1103 }