Clean-up/renaming of the per-vertex attribute bits, specifically, the
[mesa.git] / src / mesa / tnl / t_imm_fixup.c
1 /* $Id: t_imm_fixup.c,v 1.33 2002/01/22 14:35:16 brianp Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 4.1
6 *
7 * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27 /*
28 * Authors:
29 * Keith Whitwell <keithw@valinux.com>
30 */
31
32
33 #include "glheader.h"
34 #include "context.h"
35 #include "enums.h"
36 #include "dlist.h"
37 #include "colormac.h"
38 #include "light.h"
39 #include "macros.h"
40 #include "mem.h"
41 #include "mmath.h"
42 #include "state.h"
43 #include "mtypes.h"
44
45 #include "math/m_matrix.h"
46 #include "math/m_xform.h"
47
48 #include "t_context.h"
49 #include "t_imm_alloc.h"
50 #include "t_imm_debug.h"
51 #include "t_imm_elt.h"
52 #include "t_imm_fixup.h"
53 #include "t_imm_exec.h"
54 #include "t_pipeline.h"
55
56
57 static const GLuint increment[GL_POLYGON+2] = { 1,2,1,1,3,1,1,4,2,1,1 };
58 static const GLuint intro[GL_POLYGON+2] = { 0,0,2,2,0,2,2,0,2,2,0 };
59
60 void
61 _tnl_fixup_4f( GLfloat data[][4], GLuint flag[], GLuint start, GLuint match )
62 {
63 GLuint i = start;
64
65 for (;;) {
66 if ((flag[++i] & match) == 0) {
67 COPY_4FV(data[i], data[i-1]);
68 if (flag[i] & VERT_BIT_END_VB) break;
69 }
70 }
71 }
72
73 void
74 _tnl_fixup_3f( float data[][3], GLuint flag[], GLuint start, GLuint match )
75 {
76 GLuint i = start;
77
78
79 for (;;) {
80 if ((flag[++i] & match) == 0) {
81 /* fprintf(stderr, "_tnl_fixup_3f copy to %p values %f %f %f\n", */
82 /* data[i], */
83 /* data[i-1][0], */
84 /* data[i-1][1], */
85 /* data[i-1][2]); */
86 COPY_3V(data[i], data[i-1]);
87 if (flag[i] & VERT_BIT_END_VB) break;
88 }
89 }
90 }
91
92
93 void
94 _tnl_fixup_1ui( GLuint *data, GLuint flag[], GLuint start, GLuint match )
95 {
96 GLuint i = start;
97
98 for (;;) {
99 if ((flag[++i] & match) == 0) {
100 data[i] = data[i-1];
101 if (flag[i] & VERT_BIT_END_VB) break;
102 }
103 }
104 flag[i] |= match;
105 }
106
107
108 void
109 _tnl_fixup_1f( GLfloat *data, GLuint flag[], GLuint start, GLuint match )
110 {
111 GLuint i = start;
112
113 for (;;) {
114 if ((flag[++i] & match) == 0) {
115 data[i] = data[i-1];
116 if (flag[i] & VERT_BIT_END_VB) break;
117 }
118 }
119 flag[i] |= match;
120 }
121
122 void
123 _tnl_fixup_1ub( GLubyte *data, GLuint flag[], GLuint start, GLuint match )
124 {
125 GLuint i = start;
126
127 for (;;) {
128 if ((flag[++i] & match) == 0) {
129 data[i] = data[i-1];
130 if (flag[i] & VERT_BIT_END_VB) break;
131 }
132 }
133 flag[i] |= match;
134 }
135
136
137 static void
138 fixup_first_4f( GLfloat data[][4], GLuint flag[], GLuint match,
139 GLuint start, GLfloat *dflt )
140 {
141 GLuint i = start-1;
142 match |= VERT_BIT_END_VB;
143
144 while ((flag[++i]&match) == 0)
145 COPY_4FV(data[i], dflt);
146 }
147
148 #if 0
149 static void
150 fixup_first_3f( GLfloat data[][3], GLuint flag[], GLuint match,
151 GLuint start, GLfloat *dflt )
152 {
153 GLuint i = start-1;
154 match |= VERT_BIT_END_VB;
155
156 /* fprintf(stderr, "fixup_first_3f default: %f %f %f start: %d\n", */
157 /* dflt[0], dflt[1], dflt[2], start); */
158
159 while ((flag[++i]&match) == 0)
160 COPY_3FV(data[i], dflt);
161 }
162 #endif
163
164 static void
165 fixup_first_1ui( GLuint data[], GLuint flag[], GLuint match,
166 GLuint start, GLuint dflt )
167 {
168 GLuint i = start-1;
169 match |= VERT_BIT_END_VB;
170
171 while ((flag[++i]&match) == 0)
172 data[i] = dflt;
173 }
174
175 #if 00
176 static void
177 fixup_first_1f( GLfloat data[], GLuint flag[], GLuint match,
178 GLuint start, GLfloat dflt )
179 {
180 GLuint i = start-1;
181 match |= VERT_BIT_END_VB;
182
183 while ((flag[++i]&match) == 0)
184 data[i] = dflt;
185 }
186 #endif
187
188 static void
189 fixup_first_1ub( GLubyte data[], GLuint flag[], GLuint match,
190 GLuint start, GLubyte dflt )
191 {
192 GLuint i = start-1;
193 match |= VERT_BIT_END_VB;
194
195 while ((flag[++i]&match) == 0)
196 data[i] = dflt;
197 }
198
199 /*
200 * Copy vertex attributes from the ctx->Current group into the immediate
201 * struct at the given position according to copyMask.
202 */
203 static void copy_from_current( GLcontext *ctx, struct immediate *IM,
204 GLuint pos, GLuint copyMask )
205 {
206 GLuint attrib, attribBit;
207
208 if (MESA_VERBOSE&VERBOSE_IMMEDIATE)
209 _tnl_print_vert_flags("copy from current", copyMask);
210
211 #if 0
212 if (copyMask & VERT_BIT_NORMAL) {
213 COPY_4V(IM->Attrib[VERT_ATTRIB_NORMAL][pos],
214 ctx->Current.Attrib[VERT_ATTRIB_NORMAL]);
215 }
216
217 if (copyMask & VERT_BIT_COLOR0) {
218 COPY_4FV( IM->Attrib[VERT_ATTRIB_COLOR0][pos],
219 ctx->Current.Attrib[VERT_ATTRIB_COLOR0]);
220 }
221
222 if (copyMask & VERT_BIT_COLOR1)
223 COPY_4FV( IM->Attrib[VERT_ATTRIB_COLOR1][pos],
224 ctx->Current.Attrib[VERT_ATTRIB_COLOR1]);
225
226 if (copyMask & VERT_BIT_FOG)
227 IM->Attrib[VERT_ATTRIB_FOG][pos][0] = ctx->Current.Attrib[VERT_ATTRIB_FOG][0];
228
229 if (copyMask & VERT_BITS_TEX_ANY) {
230 GLuint i;
231 for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++) {
232 if (copyMask & VERT_BIT_TEX(i))
233 COPY_4FV(IM->Attrib[VERT_ATTRIB_TEX0 + i][pos],
234 ctx->Current.Attrib[VERT_ATTRIB_TEX0 + i]);
235 }
236 }
237 #else
238 for (attrib = 0, attribBit = 1; attrib < 16; attrib++, attribBit <<= 1) {
239 if (copyMask & attribBit) {
240 COPY_4FV( IM->Attrib[attrib][pos], ctx->Current.Attrib[attrib]);
241 }
242 }
243 #endif
244
245 if (copyMask & VERT_BIT_INDEX)
246 IM->Index[pos] = ctx->Current.Index;
247
248 if (copyMask & VERT_BIT_EDGEFLAG)
249 IM->EdgeFlag[pos] = ctx->Current.EdgeFlag;
250 }
251
252
253 void _tnl_fixup_input( GLcontext *ctx, struct immediate *IM )
254 {
255 TNLcontext *tnl = TNL_CONTEXT(ctx);
256 GLuint start = IM->CopyStart;
257 GLuint andflag = IM->CopyAndFlag;
258 GLuint orflag = IM->CopyOrFlag | IM->Evaluated;
259 GLuint fixup;
260
261 IM->CopyTexSize = IM->TexSize;
262
263 /* fprintf(stderr, "Fixup input, Start: %u Count: %u LastData: %u\n", */
264 /* IM->Start, IM->Count, IM->LastData); */
265 /* _tnl_print_vert_flags("Orflag", orflag); */
266 /* _tnl_print_vert_flags("Andflag", andflag); */
267
268
269 fixup = ~andflag & VERT_BITS_FIXUP;
270
271 if (!ctx->CompileFlag)
272 fixup &= tnl->pipeline.inputs;
273
274 if (!ctx->ExecuteFlag)
275 fixup &= orflag;
276
277 if ((orflag & (VERT_BIT_POS|VERT_BITS_EVAL_ANY)) == 0)
278 fixup = 0;
279
280 if (fixup) {
281 GLuint copy = fixup & ~IM->Flag[start];
282
283
284 /* Equivalent to a lazy copy-from-current when setting up the
285 * immediate.
286 */
287 if (ctx->ExecuteFlag && copy)
288 copy_from_current( ctx, IM, start, copy );
289
290 if (MESA_VERBOSE&VERBOSE_IMMEDIATE)
291 _tnl_print_vert_flags("fixup", fixup);
292
293 /* XXX replace these conditionals with a loop over the 16
294 * vertex attributes.
295 */
296
297 if (fixup & VERT_BITS_TEX_ANY) {
298 GLuint i;
299 for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++) {
300 if (fixup & VERT_BIT_TEX(i)) {
301 if (orflag & VERT_BIT_TEX(i))
302 _tnl_fixup_4f( IM->Attrib[VERT_ATTRIB_TEX0 + i], IM->Flag,
303 start, VERT_BIT_TEX(i) );
304 else
305 fixup_first_4f( IM->Attrib[VERT_ATTRIB_TEX0 + i], IM->Flag,
306 VERT_BIT_END_VB, start,
307 IM->Attrib[VERT_ATTRIB_TEX0 + i][start]);
308 }
309 }
310 }
311
312
313 if (fixup & VERT_BIT_EDGEFLAG) {
314 if (orflag & VERT_BIT_EDGEFLAG)
315 _tnl_fixup_1ub( IM->EdgeFlag, IM->Flag, start, VERT_BIT_EDGEFLAG );
316 else
317 fixup_first_1ub( IM->EdgeFlag, IM->Flag, VERT_BIT_END_VB, start,
318 IM->EdgeFlag[start] );
319 }
320
321 if (fixup & VERT_BIT_INDEX) {
322 if (orflag & VERT_BIT_INDEX)
323 _tnl_fixup_1ui( IM->Index, IM->Flag, start, VERT_BIT_INDEX );
324 else
325 fixup_first_1ui( IM->Index, IM->Flag, VERT_BIT_END_VB, start,
326 IM->Index[start] );
327 }
328
329 if (fixup & VERT_BIT_COLOR0) {
330 if (orflag & VERT_BIT_COLOR0)
331 _tnl_fixup_4f( IM->Attrib[VERT_ATTRIB_COLOR0], IM->Flag, start,
332 VERT_BIT_COLOR0 );
333 /* No need for else case as the drivers understand stride
334 * zero here. (TODO - propogate this)
335 */
336 }
337
338 if (fixup & VERT_BIT_COLOR1) {
339 if (orflag & VERT_BIT_COLOR1)
340 _tnl_fixup_4f( IM->Attrib[VERT_ATTRIB_COLOR1], IM->Flag, start,
341 VERT_BIT_COLOR1 );
342 else
343 fixup_first_4f( IM->Attrib[VERT_ATTRIB_COLOR1], IM->Flag, VERT_BIT_END_VB, start,
344 IM->Attrib[VERT_ATTRIB_COLOR1][start] );
345 }
346
347 if (fixup & VERT_BIT_FOG) {
348 if (orflag & VERT_BIT_FOG)
349 _tnl_fixup_4f( IM->Attrib[VERT_ATTRIB_FOG], IM->Flag,
350 start, VERT_BIT_FOG );
351 else
352 fixup_first_4f( IM->Attrib[VERT_ATTRIB_FOG], IM->Flag, VERT_BIT_END_VB,
353 start, IM->Attrib[VERT_ATTRIB_FOG][start] );
354 }
355
356 if (fixup & VERT_BIT_NORMAL) {
357 if (orflag & VERT_BIT_NORMAL)
358 _tnl_fixup_4f( IM->Attrib[VERT_ATTRIB_NORMAL], IM->Flag, start,
359 VERT_BIT_NORMAL );
360 else
361 fixup_first_4f( IM->Attrib[VERT_ATTRIB_NORMAL], IM->Flag,
362 VERT_BIT_END_VB, start,
363 IM->Attrib[VERT_ATTRIB_NORMAL][start] );
364 }
365 }
366
367 /* Prune possible half-filled slot.
368 */
369 IM->Flag[IM->LastData+1] &= ~VERT_BIT_END_VB;
370 IM->Flag[IM->Count] |= VERT_BIT_END_VB;
371
372
373 /* Materials:
374 */
375 if (IM->MaterialOrMask & ~IM->MaterialAndMask) {
376 GLuint vulnerable = IM->MaterialOrMask;
377 GLuint i = IM->Start;
378
379 do {
380 while (!(IM->Flag[i] & VERT_BIT_MATERIAL))
381 i++;
382
383 vulnerable &= ~IM->MaterialMask[i];
384 _mesa_copy_material_pairs( IM->Material[i],
385 ctx->Light.Material,
386 vulnerable );
387
388
389 } while (vulnerable);
390 }
391 }
392
393
394 static void
395 copy_material( struct immediate *next,
396 struct immediate *prev,
397 GLuint dst, GLuint src )
398 {
399 if (next->Material == 0) {
400 next->Material = (struct gl_material (*)[2])
401 MALLOC( sizeof(struct gl_material) * IMM_SIZE * 2 );
402 next->MaterialMask = (GLuint *) MALLOC( sizeof(GLuint) * IMM_SIZE );
403 }
404
405 next->MaterialMask[dst] = prev->MaterialOrMask;
406 MEMCPY(next->Material[dst], prev->Material[src],
407 2 * sizeof(struct gl_material));
408 }
409
410
411
412 static GLboolean is_fan_like[GL_POLYGON+1] = {
413 GL_FALSE,
414 GL_FALSE,
415 GL_TRUE, /* line loop */
416 GL_FALSE,
417 GL_FALSE,
418 GL_FALSE,
419 GL_TRUE, /* tri fan */
420 GL_FALSE,
421 GL_FALSE,
422 GL_TRUE /* polygon */
423 };
424
425
426 /* Copy the untransformed data from the shared vertices of a primitive
427 * that wraps over two immediate structs. This is done prior to
428 * set_immediate so that prev and next may point to the same
429 * structure. In general it's difficult to avoid this copy on long
430 * primitives.
431 *
432 * Have to be careful with the transitions between display list
433 * replay, compile and normal execute modes.
434 */
435 void _tnl_copy_immediate_vertices( GLcontext *ctx, struct immediate *next )
436 {
437 TNLcontext *tnl = TNL_CONTEXT(ctx);
438 struct immediate *prev = tnl->ExecCopySource;
439 struct vertex_arrays *inputs = &tnl->imm_inputs;
440 GLuint count = tnl->ExecCopyCount;
441 GLuint *elts = tnl->ExecCopyElts;
442 GLuint offset = IMM_MAX_COPIED_VERTS - count;
443 GLuint i;
444
445 if (!prev) {
446 ASSERT(tnl->ExecCopyCount == 0);
447 return;
448 }
449
450 next->CopyStart = next->Start - count;
451
452 if ((prev->CopyOrFlag & VERT_BITS_DATA) == VERT_BIT_ELT &&
453 ctx->Array.LockCount &&
454 ctx->Array.Vertex.Enabled)
455 {
456 /* Copy Elt values only
457 */
458 for (i = 0 ; i < count ; i++)
459 {
460 GLuint src = elts[i+offset];
461 GLuint dst = next->CopyStart+i;
462 next->Elt[dst] = prev->Elt[src];
463 next->Flag[dst] = VERT_BIT_ELT;
464 }
465 /* fprintf(stderr, "ADDING VERT_BIT_ELT!\n"); */
466 next->CopyOrFlag |= VERT_BIT_ELT;
467 next->CopyAndFlag &= VERT_BIT_ELT;
468 }
469 else {
470 GLuint copy = tnl->pipeline.inputs & (prev->CopyOrFlag|prev->Evaluated);
471 GLuint flag;
472
473 if (is_fan_like[ctx->Driver.CurrentExecPrimitive]) {
474 flag = ((prev->CopyOrFlag|prev->Evaluated) & VERT_BITS_FIXUP);
475 next->CopyOrFlag |= flag;
476 }
477 else {
478 /* Don't let an early 'glColor', etc. poison the elt path.
479 */
480 flag = ((prev->OrFlag|prev->Evaluated) & VERT_BITS_FIXUP);
481 }
482
483 next->TexSize |= tnl->ExecCopyTexSize;
484 next->CopyAndFlag &= flag;
485
486
487 /* _tnl_print_vert_flags("copy vertex components", copy); */
488 /* _tnl_print_vert_flags("prev copyorflag", prev->CopyOrFlag); */
489 /* _tnl_print_vert_flags("flag", flag); */
490
491 /* Copy whole vertices
492 */
493 for (i = 0 ; i < count ; i++)
494 {
495 GLuint src = elts[i+offset];
496 GLuint isrc = src - prev->CopyStart;
497 GLuint dst = next->CopyStart+i;
498
499 /* Values subject to eval must be copied out of the 'inputs'
500 * struct. (Copied rows should not be evaluated twice).
501 *
502 * Note these pointers are null when inactive.
503 */
504 COPY_4FV( next->Attrib[VERT_ATTRIB_POS][dst],
505 inputs->Obj.data[isrc] );
506
507 if (copy & VERT_BIT_NORMAL) {
508 /* fprintf(stderr, "copy vert norm %d to %d (%p): %f %f %f\n", */
509 /* isrc, dst, */
510 /* next->Normal[dst], */
511 /* inputs->Normal.data[isrc][0], */
512 /* inputs->Normal.data[isrc][1], */
513 /* inputs->Normal.data[isrc][2]); */
514 COPY_3FV( next->Attrib[VERT_ATTRIB_NORMAL][dst], inputs->Normal.data[isrc] );
515 }
516
517 if (copy & VERT_BIT_COLOR0)
518 COPY_4FV( next->Attrib[VERT_ATTRIB_COLOR0][dst],
519 ((GLfloat (*)[4])inputs->Color.Ptr)[isrc] );
520
521 if (copy & VERT_BIT_INDEX)
522 next->Index[dst] = inputs->Index.data[isrc];
523
524 if (copy & VERT_BITS_TEX_ANY) {
525 GLuint i;
526 for (i = 0 ; i < prev->MaxTextureUnits ; i++) {
527 if (copy & VERT_BIT_TEX(i))
528 COPY_4FV( next->Attrib[VERT_ATTRIB_TEX0 + i][dst],
529 inputs->TexCoord[i].data[isrc] );
530 }
531 }
532
533 /* Remaining values should be the same in the 'input' struct and the
534 * original immediate.
535 */
536 if (copy & (VERT_BIT_ELT|VERT_BIT_EDGEFLAG|VERT_BIT_COLOR1|VERT_BIT_FOG|
537 VERT_BIT_MATERIAL)) {
538
539 if (prev->Flag[src] & VERT_BIT_MATERIAL)
540 copy_material(next, prev, dst, src);
541
542 next->Elt[dst] = prev->Elt[src];
543 next->EdgeFlag[dst] = prev->EdgeFlag[src];
544 COPY_4FV( next->Attrib[VERT_ATTRIB_COLOR1][dst],
545 prev->Attrib[VERT_ATTRIB_COLOR1][src] );
546 COPY_4FV( next->Attrib[VERT_ATTRIB_FOG][dst],
547 prev->Attrib[VERT_ATTRIB_FOG][src] );
548 }
549
550 next->Flag[dst] = flag;
551 next->CopyOrFlag |= prev->Flag[src] & (VERT_BITS_FIXUP|
552 VERT_BIT_MATERIAL|
553 VERT_BIT_POS);
554 }
555 }
556
557 if (--tnl->ExecCopySource->ref_count == 0)
558 _tnl_free_immediate( tnl->ExecCopySource );
559
560 tnl->ExecCopySource = 0;
561 tnl->ExecCopyCount = 0;
562 }
563
564
565
566 /* Revive a compiled immediate struct - propogate new 'Current'
567 * values. Often this is redundant because the current values were
568 * known and fixed up at compile time (or in the first execution of
569 * the cassette).
570 */
571 void _tnl_fixup_compiled_cassette( GLcontext *ctx, struct immediate *IM )
572 {
573 TNLcontext *tnl = TNL_CONTEXT(ctx);
574 GLuint fixup;
575 GLuint start = IM->Start;
576
577 /* fprintf(stderr, "%s\n", __FUNCTION__); */
578
579 IM->Evaluated = 0;
580 IM->CopyOrFlag = IM->OrFlag;
581 IM->CopyAndFlag = IM->AndFlag;
582 IM->CopyTexSize = IM->TexSize | tnl->ExecCopyTexSize;
583
584 _tnl_copy_immediate_vertices( ctx, IM );
585
586 if (ctx->Driver.CurrentExecPrimitive == GL_POLYGON+1) {
587 ASSERT(IM->CopyStart == IM->Start);
588 }
589
590 /* Naked array elements can be copied into the first cassette in a
591 * display list. Need to translate them away:
592 */
593 if (IM->CopyOrFlag & VERT_BIT_ELT) {
594 GLuint copy = tnl->pipeline.inputs & ~ctx->Array._Enabled;
595 GLuint i;
596
597 ASSERT(IM->CopyStart < IM->Start);
598
599 _tnl_translate_array_elts( ctx, IM, IM->CopyStart, IM->Start );
600
601 for (i = IM->CopyStart ; i < IM->Start ; i++)
602 copy_from_current( ctx, IM, i, copy );
603
604 _tnl_copy_to_current( ctx, IM, ctx->Array._Enabled, IM->Start );
605 }
606
607 fixup = tnl->pipeline.inputs & ~IM->Flag[start] & VERT_BITS_FIXUP;
608
609 /* _tnl_print_vert_flags("fixup compiled", fixup); */
610
611 if (fixup) {
612
613 /* XXX try to replace this code with a loop over the 16 vertex
614 * attributes.
615 */
616
617 if (fixup & VERT_BIT_NORMAL) {
618 fixup_first_4f(IM->Attrib[VERT_ATTRIB_NORMAL], IM->Flag,
619 VERT_BIT_NORMAL, start,
620 ctx->Current.Attrib[VERT_ATTRIB_NORMAL] );
621 }
622
623 if (fixup & VERT_BIT_COLOR0) {
624 if (IM->CopyOrFlag & VERT_BIT_COLOR0)
625 fixup_first_4f(IM->Attrib[VERT_ATTRIB_COLOR0], IM->Flag,
626 VERT_BIT_COLOR0, start,
627 ctx->Current.Attrib[VERT_ATTRIB_COLOR0] );
628 else
629 fixup &= ~VERT_BIT_COLOR0;
630 }
631
632 if (fixup & VERT_BIT_COLOR1)
633 fixup_first_4f(IM->Attrib[VERT_ATTRIB_COLOR1], IM->Flag,
634 VERT_BIT_COLOR1, start,
635 ctx->Current.Attrib[VERT_ATTRIB_COLOR1] );
636
637 if (fixup & VERT_BIT_FOG)
638 fixup_first_4f( IM->Attrib[VERT_ATTRIB_FOG], IM->Flag,
639 VERT_BIT_FOG, start,
640 ctx->Current.Attrib[VERT_ATTRIB_FOG] );
641
642 if (fixup & VERT_BITS_TEX_ANY) {
643 GLuint i;
644 for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++) {
645 if (fixup & VERT_BIT_TEX(i))
646 fixup_first_4f( IM->Attrib[VERT_ATTRIB_TEX0 + i], IM->Flag,
647 VERT_BIT_TEX(i), start,
648 ctx->Current.Attrib[VERT_ATTRIB_TEX0 + i] );
649 }
650 }
651
652 if (fixup & VERT_BIT_EDGEFLAG)
653 fixup_first_1ub(IM->EdgeFlag, IM->Flag, VERT_BIT_EDGEFLAG, start,
654 ctx->Current.EdgeFlag );
655
656 if (fixup & VERT_BIT_INDEX)
657 fixup_first_1ui(IM->Index, IM->Flag, VERT_BIT_INDEX, start,
658 ctx->Current.Index );
659
660 IM->CopyOrFlag |= fixup;
661 }
662
663
664 /* Materials:
665 */
666 if (IM->MaterialOrMask & ~IM->MaterialAndMask) {
667 GLuint vulnerable = IM->MaterialOrMask;
668 GLuint i = IM->Start;
669
670 do {
671 while (!(IM->Flag[i] & VERT_BIT_MATERIAL))
672 i++;
673
674 vulnerable &= ~IM->MaterialMask[i];
675 _mesa_copy_material_pairs( IM->Material[i],
676 ctx->Light.Material,
677 vulnerable );
678
679
680 } while (vulnerable);
681 }
682 }
683
684
685
686
687
688
689 static void copy_none( TNLcontext *tnl, GLuint start, GLuint count, GLuint ovf)
690 {
691 (void) (start && ovf && tnl && count);
692 }
693
694 static void copy_last( TNLcontext *tnl, GLuint start, GLuint count, GLuint ovf)
695 {
696 (void) start; (void) ovf;
697 tnl->ExecCopyCount = 1;
698 tnl->ExecCopyElts[2] = count-1;
699 }
700
701 static void copy_first_and_last( TNLcontext *tnl, GLuint start, GLuint count,
702 GLuint ovf)
703 {
704 (void) ovf;
705 tnl->ExecCopyCount = 2;
706 tnl->ExecCopyElts[1] = start;
707 tnl->ExecCopyElts[2] = count-1;
708 }
709
710 static void copy_last_two( TNLcontext *tnl, GLuint start, GLuint count,
711 GLuint ovf )
712 {
713 (void) start;
714 tnl->ExecCopyCount = 2+ovf;
715 tnl->ExecCopyElts[0] = count-3;
716 tnl->ExecCopyElts[1] = count-2;
717 tnl->ExecCopyElts[2] = count-1;
718 }
719
720 static void copy_overflow( TNLcontext *tnl, GLuint start, GLuint count,
721 GLuint ovf )
722 {
723 (void) start;
724 tnl->ExecCopyCount = ovf;
725 tnl->ExecCopyElts[0] = count-3;
726 tnl->ExecCopyElts[1] = count-2;
727 tnl->ExecCopyElts[2] = count-1;
728 }
729
730
731 typedef void (*copy_func)( TNLcontext *tnl, GLuint start, GLuint count,
732 GLuint ovf );
733
734 static copy_func copy_tab[GL_POLYGON+2] =
735 {
736 copy_none,
737 copy_overflow,
738 copy_first_and_last,
739 copy_last,
740 copy_overflow,
741 copy_last_two,
742 copy_first_and_last,
743 copy_overflow,
744 copy_last_two,
745 copy_first_and_last,
746 copy_none
747 };
748
749
750
751
752
753 /* Figure out what vertices need to be copied next time.
754 */
755 void
756 _tnl_get_exec_copy_verts( GLcontext *ctx, struct immediate *IM )
757 {
758
759 TNLcontext *tnl = TNL_CONTEXT(ctx);
760 GLuint last = IM->LastPrimitive;
761 GLuint prim = ctx->Driver.CurrentExecPrimitive;
762 GLuint pincr = increment[prim];
763 GLuint pintro = intro[prim];
764 GLuint ovf = 0;
765
766 /* fprintf(stderr, "_tnl_get_exec_copy_verts %s\n", */
767 /* _mesa_lookup_enum_by_nr(prim)); */
768
769 ASSERT(tnl->ExecCopySource == 0);
770
771 if (prim == GL_POLYGON+1) {
772 tnl->ExecCopyCount = 0;
773 tnl->ExecCopyTexSize = 0;
774 tnl->ExecParity = 0;
775 } else {
776 /* Remember this immediate as the one to copy from.
777 */
778 IM->ref_count++;
779 tnl->ExecCopySource = IM;
780 tnl->ExecCopyCount = 0;
781 tnl->ExecCopyTexSize = IM->CopyTexSize;
782
783 if (IM->LastPrimitive != IM->CopyStart)
784 tnl->ExecParity = 0;
785
786 tnl->ExecParity ^= IM->PrimitiveLength[IM->LastPrimitive] & 1;
787
788
789 if (pincr != 1 && (IM->Count - last - pintro))
790 ovf = (IM->Count - last - pintro) % pincr;
791
792 if (last < IM->Count)
793 copy_tab[prim]( tnl, last, IM->Count, ovf );
794 }
795 }
796
797
798 /* Recalculate ExecCopyElts, ExecParity, etc.
799 */
800 void
801 _tnl_get_purged_copy_verts( GLcontext *ctx, struct immediate *IM )
802 {
803 TNLcontext *tnl = TNL_CONTEXT(ctx);
804
805 if (ctx->Driver.CurrentExecPrimitive != GL_POLYGON+1) {
806 GLuint last = IM->LastPrimitive;
807 GLenum prim = IM->Primitive[last];
808 GLuint pincr = increment[prim];
809 GLuint pintro = intro[prim];
810 GLuint ovf = 0, i;
811
812 tnl->ExecCopyCount = 0;
813 if (IM->LastPrimitive != IM->CopyStart)
814 tnl->ExecParity = 0;
815
816 tnl->ExecParity ^= IM->PrimitiveLength[IM->LastPrimitive] & 1;
817
818 if (pincr != 1 && (IM->Count - last - pintro))
819 ovf = (IM->Count - last - pintro) % pincr;
820
821 if (last < IM->Count)
822 copy_tab[prim]( tnl, last, IM->Count, ovf );
823
824 for (i = 0 ; i < tnl->ExecCopyCount ; i++)
825 tnl->ExecCopyElts[i] = IM->Elt[tnl->ExecCopyElts[i]];
826 }
827 }
828
829
830 void _tnl_upgrade_current_data( GLcontext *ctx,
831 GLuint required,
832 GLuint flags )
833 {
834 TNLcontext *tnl = TNL_CONTEXT(ctx);
835 struct vertex_buffer *VB = &tnl->vb;
836 struct immediate *IM = (struct immediate *)VB->import_source;
837
838 ASSERT(IM);
839
840 /* _tnl_print_vert_flags("_tnl_upgrade_client_data", required); */
841
842 if ((required & VERT_BIT_COLOR0) && (VB->ColorPtr[0]->Flags & CA_CLIENT_DATA)) {
843 struct gl_client_array *tmp = &tnl->imm_inputs.Color;
844 GLuint start = IM->CopyStart;
845
846 tmp->Ptr = IM->Attrib[VERT_ATTRIB_COLOR0] + start;
847 tmp->StrideB = 4 * sizeof(GLfloat);
848 tmp->Flags = 0;
849
850 COPY_4FV( IM->Attrib[VERT_ATTRIB_COLOR0][start],
851 ctx->Current.Attrib[VERT_ATTRIB_COLOR0]);
852
853 /*
854 ASSERT(IM->Flag[IM->LastData+1] & VERT_BIT_END_VB);
855 */
856
857 fixup_first_4f( IM->Attrib[VERT_ATTRIB_COLOR0], IM->Flag,
858 VERT_BIT_END_VB,
859 start, IM->Attrib[VERT_ATTRIB_COLOR0][start] );
860
861 VB->importable_data &= ~VERT_BIT_COLOR0;
862 }
863 }
864