uint*t -> u_int*t changes
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_state.c
1 /* $XFree86: xc/lib/GL/mesa/src/drv/radeon/radeon_state.c,v 1.8 2002/12/16 16:18:58 dawes Exp $ */
2 /**************************************************************************
3
4 Copyright 2000, 2001 VA Linux Systems Inc., Fremont, California.
5
6 All Rights Reserved.
7
8 Permission is hereby granted, free of charge, to any person obtaining
9 a copy of this software and associated documentation files (the
10 "Software"), to deal in the Software without restriction, including
11 without limitation the rights to use, copy, modify, merge, publish,
12 distribute, sublicense, and/or sell copies of the Software, and to
13 permit persons to whom the Software is furnished to do so, subject to
14 the following conditions:
15
16 The above copyright notice and this permission notice (including the
17 next paragraph) shall be included in all copies or substantial
18 portions of the Software.
19
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
24 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28 **************************************************************************/
29
30 /*
31 * Authors:
32 * Gareth Hughes <gareth@valinux.com>
33 * Keith Whitwell <keith@tungstengraphics.com>
34 */
35
36 #include "glheader.h"
37 #include "imports.h"
38 #include "api_arrayelt.h"
39 #include "enums.h"
40 #include "colormac.h"
41 #include "state.h"
42 #include "buffers.h"
43 #include "context.h"
44
45 #include "swrast/swrast.h"
46 #include "array_cache/acache.h"
47 #include "tnl/tnl.h"
48 #include "tnl/t_pipeline.h"
49 #include "main/light.h"
50 #include "swrast_setup/swrast_setup.h"
51
52 #include "radeon_context.h"
53 #include "radeon_ioctl.h"
54 #include "radeon_state.h"
55 #include "radeon_tcl.h"
56 #include "radeon_tex.h"
57 #include "radeon_swtcl.h"
58 #include "radeon_vtxfmt.h"
59
60 /* =============================================================
61 * Alpha blending
62 */
63
64 static void radeonAlphaFunc( GLcontext *ctx, GLenum func, GLfloat ref )
65 {
66 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
67 int pp_misc = rmesa->hw.ctx.cmd[CTX_PP_MISC];
68 GLubyte refByte;
69
70 CLAMPED_FLOAT_TO_UBYTE(refByte, ref);
71
72 RADEON_STATECHANGE( rmesa, ctx );
73
74 pp_misc &= ~(RADEON_ALPHA_TEST_OP_MASK | RADEON_REF_ALPHA_MASK);
75 pp_misc |= (refByte & RADEON_REF_ALPHA_MASK);
76
77 switch ( func ) {
78 case GL_NEVER:
79 pp_misc |= RADEON_ALPHA_TEST_FAIL;
80 break;
81 case GL_LESS:
82 pp_misc |= RADEON_ALPHA_TEST_LESS;
83 break;
84 case GL_EQUAL:
85 pp_misc |= RADEON_ALPHA_TEST_EQUAL;
86 break;
87 case GL_LEQUAL:
88 pp_misc |= RADEON_ALPHA_TEST_LEQUAL;
89 break;
90 case GL_GREATER:
91 pp_misc |= RADEON_ALPHA_TEST_GREATER;
92 break;
93 case GL_NOTEQUAL:
94 pp_misc |= RADEON_ALPHA_TEST_NEQUAL;
95 break;
96 case GL_GEQUAL:
97 pp_misc |= RADEON_ALPHA_TEST_GEQUAL;
98 break;
99 case GL_ALWAYS:
100 pp_misc |= RADEON_ALPHA_TEST_PASS;
101 break;
102 }
103
104 rmesa->hw.ctx.cmd[CTX_PP_MISC] = pp_misc;
105 }
106
107 static void radeonBlendEquationSeparate( GLcontext *ctx,
108 GLenum modeRGB, GLenum modeA )
109 {
110 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
111 GLuint b = rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] & ~RADEON_COMB_FCN_MASK;
112 GLboolean fallback = GL_FALSE;
113
114 assert( modeRGB == modeA );
115
116 switch ( modeRGB ) {
117 case GL_FUNC_ADD:
118 case GL_LOGIC_OP:
119 b |= RADEON_COMB_FCN_ADD_CLAMP;
120 break;
121
122 case GL_FUNC_SUBTRACT:
123 b |= RADEON_COMB_FCN_SUB_CLAMP;
124 break;
125
126 default:
127 if (ctx->Color.BlendEnabled)
128 fallback = GL_TRUE;
129 else
130 b |= RADEON_COMB_FCN_ADD_CLAMP;
131 break;
132 }
133
134 FALLBACK( rmesa, RADEON_FALLBACK_BLEND_EQ, fallback );
135 if ( !fallback ) {
136 RADEON_STATECHANGE( rmesa, ctx );
137 rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] = b;
138 if ( ctx->Color._LogicOpEnabled ) {
139 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= RADEON_ROP_ENABLE;
140 } else {
141 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~RADEON_ROP_ENABLE;
142 }
143 }
144 }
145
146 static void radeonBlendFuncSeparate( GLcontext *ctx,
147 GLenum sfactorRGB, GLenum dfactorRGB,
148 GLenum sfactorA, GLenum dfactorA )
149 {
150 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
151 GLuint b = rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] &
152 ~(RADEON_SRC_BLEND_MASK | RADEON_DST_BLEND_MASK);
153 GLboolean fallback = GL_FALSE;
154
155 switch ( ctx->Color.BlendSrcRGB ) {
156 case GL_ZERO:
157 b |= RADEON_SRC_BLEND_GL_ZERO;
158 break;
159 case GL_ONE:
160 b |= RADEON_SRC_BLEND_GL_ONE;
161 break;
162 case GL_DST_COLOR:
163 b |= RADEON_SRC_BLEND_GL_DST_COLOR;
164 break;
165 case GL_ONE_MINUS_DST_COLOR:
166 b |= RADEON_SRC_BLEND_GL_ONE_MINUS_DST_COLOR;
167 break;
168 case GL_SRC_COLOR:
169 b |= RADEON_SRC_BLEND_GL_SRC_COLOR;
170 break;
171 case GL_ONE_MINUS_SRC_COLOR:
172 b |= RADEON_SRC_BLEND_GL_ONE_MINUS_SRC_COLOR;
173 break;
174 case GL_SRC_ALPHA:
175 b |= RADEON_SRC_BLEND_GL_SRC_ALPHA;
176 break;
177 case GL_ONE_MINUS_SRC_ALPHA:
178 b |= RADEON_SRC_BLEND_GL_ONE_MINUS_SRC_ALPHA;
179 break;
180 case GL_DST_ALPHA:
181 b |= RADEON_SRC_BLEND_GL_DST_ALPHA;
182 break;
183 case GL_ONE_MINUS_DST_ALPHA:
184 b |= RADEON_SRC_BLEND_GL_ONE_MINUS_DST_ALPHA;
185 break;
186 case GL_SRC_ALPHA_SATURATE:
187 b |= RADEON_SRC_BLEND_GL_SRC_ALPHA_SATURATE;
188 break;
189 case GL_CONSTANT_COLOR:
190 case GL_ONE_MINUS_CONSTANT_COLOR:
191 case GL_CONSTANT_ALPHA:
192 case GL_ONE_MINUS_CONSTANT_ALPHA:
193 if (ctx->Color.BlendEnabled)
194 fallback = GL_TRUE;
195 else
196 b |= RADEON_SRC_BLEND_GL_ONE;
197 break;
198 default:
199 break;
200 }
201
202 switch ( ctx->Color.BlendDstRGB ) {
203 case GL_ZERO:
204 b |= RADEON_DST_BLEND_GL_ZERO;
205 break;
206 case GL_ONE:
207 b |= RADEON_DST_BLEND_GL_ONE;
208 break;
209 case GL_SRC_COLOR:
210 b |= RADEON_DST_BLEND_GL_SRC_COLOR;
211 break;
212 case GL_ONE_MINUS_SRC_COLOR:
213 b |= RADEON_DST_BLEND_GL_ONE_MINUS_SRC_COLOR;
214 break;
215 case GL_SRC_ALPHA:
216 b |= RADEON_DST_BLEND_GL_SRC_ALPHA;
217 break;
218 case GL_ONE_MINUS_SRC_ALPHA:
219 b |= RADEON_DST_BLEND_GL_ONE_MINUS_SRC_ALPHA;
220 break;
221 case GL_DST_COLOR:
222 b |= RADEON_DST_BLEND_GL_DST_COLOR;
223 break;
224 case GL_ONE_MINUS_DST_COLOR:
225 b |= RADEON_DST_BLEND_GL_ONE_MINUS_DST_COLOR;
226 break;
227 case GL_DST_ALPHA:
228 b |= RADEON_DST_BLEND_GL_DST_ALPHA;
229 break;
230 case GL_ONE_MINUS_DST_ALPHA:
231 b |= RADEON_DST_BLEND_GL_ONE_MINUS_DST_ALPHA;
232 break;
233 case GL_CONSTANT_COLOR:
234 case GL_ONE_MINUS_CONSTANT_COLOR:
235 case GL_CONSTANT_ALPHA:
236 case GL_ONE_MINUS_CONSTANT_ALPHA:
237 if (ctx->Color.BlendEnabled)
238 fallback = GL_TRUE;
239 else
240 b |= RADEON_DST_BLEND_GL_ZERO;
241 break;
242 default:
243 break;
244 }
245
246 FALLBACK( rmesa, RADEON_FALLBACK_BLEND_FUNC, fallback );
247 if ( !fallback ) {
248 RADEON_STATECHANGE( rmesa, ctx );
249 rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] = b;
250 }
251 }
252
253
254 /* =============================================================
255 * Depth testing
256 */
257
258 static void radeonDepthFunc( GLcontext *ctx, GLenum func )
259 {
260 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
261
262 RADEON_STATECHANGE( rmesa, ctx );
263 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] &= ~RADEON_Z_TEST_MASK;
264
265 switch ( ctx->Depth.Func ) {
266 case GL_NEVER:
267 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_NEVER;
268 break;
269 case GL_LESS:
270 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_LESS;
271 break;
272 case GL_EQUAL:
273 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_EQUAL;
274 break;
275 case GL_LEQUAL:
276 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_LEQUAL;
277 break;
278 case GL_GREATER:
279 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_GREATER;
280 break;
281 case GL_NOTEQUAL:
282 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_NEQUAL;
283 break;
284 case GL_GEQUAL:
285 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_GEQUAL;
286 break;
287 case GL_ALWAYS:
288 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_ALWAYS;
289 break;
290 }
291 }
292
293
294 static void radeonDepthMask( GLcontext *ctx, GLboolean flag )
295 {
296 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
297 RADEON_STATECHANGE( rmesa, ctx );
298
299 if ( ctx->Depth.Mask ) {
300 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_WRITE_ENABLE;
301 } else {
302 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] &= ~RADEON_Z_WRITE_ENABLE;
303 }
304 }
305
306 static void radeonClearDepth( GLcontext *ctx, GLclampd d )
307 {
308 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
309 GLuint format = (rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] &
310 RADEON_DEPTH_FORMAT_MASK);
311
312 switch ( format ) {
313 case RADEON_DEPTH_FORMAT_16BIT_INT_Z:
314 rmesa->state.depth.clear = d * 0x0000ffff;
315 break;
316 case RADEON_DEPTH_FORMAT_24BIT_INT_Z:
317 rmesa->state.depth.clear = d * 0x00ffffff;
318 break;
319 }
320 }
321
322
323 /* =============================================================
324 * Fog
325 */
326
327
328 static void radeonFogfv( GLcontext *ctx, GLenum pname, const GLfloat *param )
329 {
330 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
331 union { int i; float f; } c, d;
332 GLchan col[4];
333
334 c.i = rmesa->hw.fog.cmd[FOG_C];
335 d.i = rmesa->hw.fog.cmd[FOG_D];
336
337 switch (pname) {
338 case GL_FOG_MODE:
339 if (!ctx->Fog.Enabled)
340 return;
341 RADEON_STATECHANGE(rmesa, tcl);
342 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] &= ~RADEON_TCL_FOG_MASK;
343 switch (ctx->Fog.Mode) {
344 case GL_LINEAR:
345 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] |= RADEON_TCL_FOG_LINEAR;
346 if (ctx->Fog.Start == ctx->Fog.End) {
347 c.f = 1.0F;
348 d.f = 1.0F;
349 }
350 else {
351 c.f = ctx->Fog.End/(ctx->Fog.End-ctx->Fog.Start);
352 d.f = 1.0/(ctx->Fog.End-ctx->Fog.Start);
353 }
354 break;
355 case GL_EXP:
356 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] |= RADEON_TCL_FOG_EXP;
357 c.f = 0.0;
358 d.f = ctx->Fog.Density;
359 break;
360 case GL_EXP2:
361 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] |= RADEON_TCL_FOG_EXP2;
362 c.f = 0.0;
363 d.f = -(ctx->Fog.Density * ctx->Fog.Density);
364 break;
365 default:
366 return;
367 }
368 break;
369 case GL_FOG_DENSITY:
370 switch (ctx->Fog.Mode) {
371 case GL_EXP:
372 c.f = 0.0;
373 d.f = ctx->Fog.Density;
374 break;
375 case GL_EXP2:
376 c.f = 0.0;
377 d.f = -(ctx->Fog.Density * ctx->Fog.Density);
378 break;
379 default:
380 break;
381 }
382 break;
383 case GL_FOG_START:
384 case GL_FOG_END:
385 if (ctx->Fog.Mode == GL_LINEAR) {
386 if (ctx->Fog.Start == ctx->Fog.End) {
387 c.f = 1.0F;
388 d.f = 1.0F;
389 } else {
390 c.f = ctx->Fog.End/(ctx->Fog.End-ctx->Fog.Start);
391 d.f = 1.0/(ctx->Fog.End-ctx->Fog.Start);
392 }
393 }
394 break;
395 case GL_FOG_COLOR:
396 RADEON_STATECHANGE( rmesa, ctx );
397 UNCLAMPED_FLOAT_TO_RGB_CHAN( col, ctx->Fog.Color );
398 rmesa->hw.ctx.cmd[CTX_PP_FOG_COLOR] =
399 radeonPackColor( 4, col[0], col[1], col[2], 0 );
400 break;
401 case GL_FOG_COORDINATE_SOURCE_EXT:
402 /* What to do?
403 */
404 break;
405 default:
406 return;
407 }
408
409 if (c.i != rmesa->hw.fog.cmd[FOG_C] || d.i != rmesa->hw.fog.cmd[FOG_D]) {
410 RADEON_STATECHANGE( rmesa, fog );
411 rmesa->hw.fog.cmd[FOG_C] = c.i;
412 rmesa->hw.fog.cmd[FOG_D] = d.i;
413 }
414 }
415
416
417 /* =============================================================
418 * Scissoring
419 */
420
421
422 static GLboolean intersect_rect( drm_clip_rect_t *out,
423 drm_clip_rect_t *a,
424 drm_clip_rect_t *b )
425 {
426 *out = *a;
427 if ( b->x1 > out->x1 ) out->x1 = b->x1;
428 if ( b->y1 > out->y1 ) out->y1 = b->y1;
429 if ( b->x2 < out->x2 ) out->x2 = b->x2;
430 if ( b->y2 < out->y2 ) out->y2 = b->y2;
431 if ( out->x1 >= out->x2 ) return GL_FALSE;
432 if ( out->y1 >= out->y2 ) return GL_FALSE;
433 return GL_TRUE;
434 }
435
436
437 void radeonRecalcScissorRects( radeonContextPtr rmesa )
438 {
439 drm_clip_rect_t *out;
440 int i;
441
442 /* Grow cliprect store?
443 */
444 if (rmesa->state.scissor.numAllocedClipRects < rmesa->numClipRects) {
445 while (rmesa->state.scissor.numAllocedClipRects < rmesa->numClipRects) {
446 rmesa->state.scissor.numAllocedClipRects += 1; /* zero case */
447 rmesa->state.scissor.numAllocedClipRects *= 2;
448 }
449
450 if (rmesa->state.scissor.pClipRects)
451 FREE(rmesa->state.scissor.pClipRects);
452
453 rmesa->state.scissor.pClipRects =
454 MALLOC( rmesa->state.scissor.numAllocedClipRects *
455 sizeof(drm_clip_rect_t) );
456
457 if ( rmesa->state.scissor.pClipRects == NULL ) {
458 rmesa->state.scissor.numAllocedClipRects = 0;
459 return;
460 }
461 }
462
463 out = rmesa->state.scissor.pClipRects;
464 rmesa->state.scissor.numClipRects = 0;
465
466 for ( i = 0 ; i < rmesa->numClipRects ; i++ ) {
467 if ( intersect_rect( out,
468 &rmesa->pClipRects[i],
469 &rmesa->state.scissor.rect ) ) {
470 rmesa->state.scissor.numClipRects++;
471 out++;
472 }
473 }
474 }
475
476
477 static void radeonUpdateScissor( GLcontext *ctx )
478 {
479 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
480
481 if ( rmesa->dri.drawable ) {
482 __DRIdrawablePrivate *dPriv = rmesa->dri.drawable;
483
484 int x = ctx->Scissor.X;
485 int y = dPriv->h - ctx->Scissor.Y - ctx->Scissor.Height;
486 int w = ctx->Scissor.X + ctx->Scissor.Width - 1;
487 int h = dPriv->h - ctx->Scissor.Y - 1;
488
489 rmesa->state.scissor.rect.x1 = x + dPriv->x;
490 rmesa->state.scissor.rect.y1 = y + dPriv->y;
491 rmesa->state.scissor.rect.x2 = w + dPriv->x + 1;
492 rmesa->state.scissor.rect.y2 = h + dPriv->y + 1;
493
494 radeonRecalcScissorRects( rmesa );
495 }
496 }
497
498
499 static void radeonScissor( GLcontext *ctx,
500 GLint x, GLint y, GLsizei w, GLsizei h )
501 {
502 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
503
504 if ( ctx->Scissor.Enabled ) {
505 RADEON_FIREVERTICES( rmesa ); /* don't pipeline cliprect changes */
506 radeonUpdateScissor( ctx );
507 }
508
509 }
510
511
512 /* =============================================================
513 * Culling
514 */
515
516 static void radeonCullFace( GLcontext *ctx, GLenum unused )
517 {
518 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
519 GLuint s = rmesa->hw.set.cmd[SET_SE_CNTL];
520 GLuint t = rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL];
521
522 s |= RADEON_FFACE_SOLID | RADEON_BFACE_SOLID;
523 t &= ~(RADEON_CULL_FRONT | RADEON_CULL_BACK);
524
525 if ( ctx->Polygon.CullFlag ) {
526 switch ( ctx->Polygon.CullFaceMode ) {
527 case GL_FRONT:
528 s &= ~RADEON_FFACE_SOLID;
529 t |= RADEON_CULL_FRONT;
530 break;
531 case GL_BACK:
532 s &= ~RADEON_BFACE_SOLID;
533 t |= RADEON_CULL_BACK;
534 break;
535 case GL_FRONT_AND_BACK:
536 s &= ~(RADEON_FFACE_SOLID | RADEON_BFACE_SOLID);
537 t |= (RADEON_CULL_FRONT | RADEON_CULL_BACK);
538 break;
539 }
540 }
541
542 if ( rmesa->hw.set.cmd[SET_SE_CNTL] != s ) {
543 RADEON_STATECHANGE(rmesa, set );
544 rmesa->hw.set.cmd[SET_SE_CNTL] = s;
545 }
546
547 if ( rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] != t ) {
548 RADEON_STATECHANGE(rmesa, tcl );
549 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] = t;
550 }
551 }
552
553 static void radeonFrontFace( GLcontext *ctx, GLenum mode )
554 {
555 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
556
557 RADEON_STATECHANGE( rmesa, set );
558 rmesa->hw.set.cmd[SET_SE_CNTL] &= ~RADEON_FFACE_CULL_DIR_MASK;
559
560 RADEON_STATECHANGE( rmesa, tcl );
561 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] &= ~RADEON_CULL_FRONT_IS_CCW;
562
563 switch ( mode ) {
564 case GL_CW:
565 rmesa->hw.set.cmd[SET_SE_CNTL] |= RADEON_FFACE_CULL_CW;
566 break;
567 case GL_CCW:
568 rmesa->hw.set.cmd[SET_SE_CNTL] |= RADEON_FFACE_CULL_CCW;
569 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] |= RADEON_CULL_FRONT_IS_CCW;
570 break;
571 }
572 }
573
574
575 /* =============================================================
576 * Line state
577 */
578 static void radeonLineWidth( GLcontext *ctx, GLfloat widthf )
579 {
580 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
581
582 RADEON_STATECHANGE( rmesa, lin );
583 RADEON_STATECHANGE( rmesa, set );
584
585 /* Line width is stored in U6.4 format.
586 */
587 rmesa->hw.lin.cmd[LIN_SE_LINE_WIDTH] = (GLuint)(widthf * 16.0);
588 if ( widthf > 1.0 ) {
589 rmesa->hw.set.cmd[SET_SE_CNTL] |= RADEON_WIDELINE_ENABLE;
590 } else {
591 rmesa->hw.set.cmd[SET_SE_CNTL] &= ~RADEON_WIDELINE_ENABLE;
592 }
593 }
594
595 static void radeonLineStipple( GLcontext *ctx, GLint factor, GLushort pattern )
596 {
597 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
598
599 RADEON_STATECHANGE( rmesa, lin );
600 rmesa->hw.lin.cmd[LIN_RE_LINE_PATTERN] =
601 ((((GLuint)factor & 0xff) << 16) | ((GLuint)pattern));
602 }
603
604
605 /* =============================================================
606 * Masks
607 */
608 static void radeonColorMask( GLcontext *ctx,
609 GLboolean r, GLboolean g,
610 GLboolean b, GLboolean a )
611 {
612 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
613 GLuint mask = radeonPackColor( rmesa->radeonScreen->cpp,
614 ctx->Color.ColorMask[RCOMP],
615 ctx->Color.ColorMask[GCOMP],
616 ctx->Color.ColorMask[BCOMP],
617 ctx->Color.ColorMask[ACOMP] );
618
619 if ( rmesa->hw.msk.cmd[MSK_RB3D_PLANEMASK] != mask ) {
620 RADEON_STATECHANGE( rmesa, msk );
621 rmesa->hw.msk.cmd[MSK_RB3D_PLANEMASK] = mask;
622 }
623 }
624
625
626 /* =============================================================
627 * Polygon state
628 */
629
630 static void radeonPolygonOffset( GLcontext *ctx,
631 GLfloat factor, GLfloat units )
632 {
633 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
634 GLfloat constant = units * rmesa->state.depth.scale;
635
636 RADEON_STATECHANGE( rmesa, zbs );
637 rmesa->hw.zbs.cmd[ZBS_SE_ZBIAS_FACTOR] = *(GLuint *)&factor;
638 rmesa->hw.zbs.cmd[ZBS_SE_ZBIAS_CONSTANT] = *(GLuint *)&constant;
639 }
640
641 static void radeonPolygonStipple( GLcontext *ctx, const GLubyte *mask )
642 {
643 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
644 GLuint i;
645 drm_radeon_stipple_t stipple;
646
647 /* Must flip pattern upside down.
648 */
649 for ( i = 0 ; i < 32 ; i++ ) {
650 rmesa->state.stipple.mask[31 - i] = ((GLuint *) mask)[i];
651 }
652
653 /* TODO: push this into cmd mechanism
654 */
655 RADEON_FIREVERTICES( rmesa );
656 LOCK_HARDWARE( rmesa );
657
658 /* FIXME: Use window x,y offsets into stipple RAM.
659 */
660 stipple.mask = rmesa->state.stipple.mask;
661 drmCommandWrite( rmesa->dri.fd, DRM_RADEON_STIPPLE,
662 &stipple, sizeof(drm_radeon_stipple_t) );
663 UNLOCK_HARDWARE( rmesa );
664 }
665
666 static void radeonPolygonMode( GLcontext *ctx, GLenum face, GLenum mode )
667 {
668 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
669 GLboolean flag = (ctx->_TriangleCaps & DD_TRI_UNFILLED) != 0;
670
671 /* Can't generally do unfilled via tcl, but some good special
672 * cases work.
673 */
674 TCL_FALLBACK( ctx, RADEON_TCL_FALLBACK_UNFILLED, flag);
675 if (rmesa->TclFallback) {
676 radeonChooseRenderState( ctx );
677 radeonChooseVertexState( ctx );
678 }
679 }
680
681
682 /* =============================================================
683 * Rendering attributes
684 *
685 * We really don't want to recalculate all this every time we bind a
686 * texture. These things shouldn't change all that often, so it makes
687 * sense to break them out of the core texture state update routines.
688 */
689
690 /* Examine lighting and texture state to determine if separate specular
691 * should be enabled.
692 */
693 static void radeonUpdateSpecular( GLcontext *ctx )
694 {
695 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
696 u_int32_t p = rmesa->hw.ctx.cmd[CTX_PP_CNTL];
697
698 RADEON_STATECHANGE( rmesa, tcl );
699
700 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL] &= ~RADEON_TCL_COMPUTE_SPECULAR;
701 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL] &= ~RADEON_TCL_COMPUTE_DIFFUSE;
702 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] &= ~RADEON_TCL_VTX_PK_SPEC;
703 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] &= ~RADEON_TCL_VTX_PK_DIFFUSE;
704 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] &= ~RADEON_LIGHTING_ENABLE;
705
706 p &= ~RADEON_SPECULAR_ENABLE;
707
708 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] |= RADEON_DIFFUSE_SPECULAR_COMBINE;
709
710
711 if (ctx->Light.Enabled &&
712 ctx->Light.Model.ColorControl == GL_SEPARATE_SPECULAR_COLOR) {
713 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL] |= RADEON_TCL_COMPUTE_SPECULAR;
714 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL] |= RADEON_TCL_COMPUTE_DIFFUSE;
715 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] |= RADEON_TCL_VTX_PK_SPEC;
716 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] |= RADEON_TCL_VTX_PK_DIFFUSE;
717 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] |= RADEON_LIGHTING_ENABLE;
718 p |= RADEON_SPECULAR_ENABLE;
719 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] &=
720 ~RADEON_DIFFUSE_SPECULAR_COMBINE;
721 }
722 else if (ctx->Light.Enabled) {
723 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL] |= RADEON_TCL_COMPUTE_DIFFUSE;
724 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] |= RADEON_TCL_VTX_PK_DIFFUSE;
725 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] |= RADEON_LIGHTING_ENABLE;
726 } else if (ctx->Fog.ColorSumEnabled ) {
727 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] |= RADEON_TCL_VTX_PK_SPEC;
728 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] |= RADEON_TCL_VTX_PK_DIFFUSE;
729 p |= RADEON_SPECULAR_ENABLE;
730 } else {
731 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] |= RADEON_TCL_VTX_PK_DIFFUSE;
732 }
733
734 if (ctx->Fog.Enabled) {
735 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL] |= RADEON_TCL_COMPUTE_SPECULAR;
736 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXFMT] |= RADEON_TCL_VTX_PK_SPEC;
737
738 /* Bizzare: have to leave lighting enabled to get fog.
739 */
740 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] |= RADEON_LIGHTING_ENABLE;
741 }
742
743 if (NEED_SECONDARY_COLOR(ctx)) {
744 assert( (p & RADEON_SPECULAR_ENABLE) != 0 );
745 } else {
746 assert( (p & RADEON_SPECULAR_ENABLE) == 0 );
747 }
748
749 if ( rmesa->hw.ctx.cmd[CTX_PP_CNTL] != p ) {
750 RADEON_STATECHANGE( rmesa, ctx );
751 rmesa->hw.ctx.cmd[CTX_PP_CNTL] = p;
752 }
753
754 /* Update vertex/render formats
755 */
756 if (rmesa->TclFallback) {
757 radeonChooseRenderState( ctx );
758 radeonChooseVertexState( ctx );
759 }
760 }
761
762
763 /* =============================================================
764 * Materials
765 */
766
767
768 /* Update on colormaterial, material emmissive/ambient,
769 * lightmodel.globalambient
770 */
771 static void update_global_ambient( GLcontext *ctx )
772 {
773 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
774 float *fcmd = (float *)RADEON_DB_STATE( glt );
775
776 /* Need to do more if both emmissive & ambient are PREMULT:
777 * Hope this is not needed for MULT
778 */
779 if ((rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] &
780 ((3 << RADEON_EMISSIVE_SOURCE_SHIFT) |
781 (3 << RADEON_AMBIENT_SOURCE_SHIFT))) == 0)
782 {
783 COPY_3V( &fcmd[GLT_RED],
784 ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_EMISSION]);
785 ACC_SCALE_3V( &fcmd[GLT_RED],
786 ctx->Light.Model.Ambient,
787 ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_AMBIENT]);
788 }
789 else
790 {
791 COPY_3V( &fcmd[GLT_RED], ctx->Light.Model.Ambient );
792 }
793
794 RADEON_DB_STATECHANGE(rmesa, &rmesa->hw.glt);
795 }
796
797 /* Update on change to
798 * - light[p].colors
799 * - light[p].enabled
800 */
801 static void update_light_colors( GLcontext *ctx, GLuint p )
802 {
803 struct gl_light *l = &ctx->Light.Light[p];
804
805 /* fprintf(stderr, "%s\n", __FUNCTION__); */
806
807 if (l->Enabled) {
808 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
809 float *fcmd = (float *)RADEON_DB_STATE( lit[p] );
810
811 COPY_4V( &fcmd[LIT_AMBIENT_RED], l->Ambient );
812 COPY_4V( &fcmd[LIT_DIFFUSE_RED], l->Diffuse );
813 COPY_4V( &fcmd[LIT_SPECULAR_RED], l->Specular );
814
815 RADEON_DB_STATECHANGE( rmesa, &rmesa->hw.lit[p] );
816 }
817 }
818
819 /* Also fallback for asym colormaterial mode in twoside lighting...
820 */
821 static void check_twoside_fallback( GLcontext *ctx )
822 {
823 GLboolean fallback = GL_FALSE;
824 GLint i;
825
826 if (ctx->Light.Enabled && ctx->Light.Model.TwoSide) {
827 if (ctx->Light.ColorMaterialEnabled &&
828 (ctx->Light.ColorMaterialBitmask & BACK_MATERIAL_BITS) !=
829 ((ctx->Light.ColorMaterialBitmask & FRONT_MATERIAL_BITS)<<1))
830 fallback = GL_TRUE;
831 else {
832 for (i = MAT_ATTRIB_FRONT_AMBIENT; i < MAT_ATTRIB_FRONT_INDEXES; i+=2)
833 if (memcmp( ctx->Light.Material.Attrib[i],
834 ctx->Light.Material.Attrib[i+1],
835 sizeof(GLfloat)*4) != 0) {
836 fallback = GL_TRUE;
837 break;
838 }
839 }
840 }
841
842 TCL_FALLBACK( ctx, RADEON_TCL_FALLBACK_LIGHT_TWOSIDE, fallback );
843 }
844
845
846 static void radeonColorMaterial( GLcontext *ctx, GLenum face, GLenum mode )
847 {
848 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
849 GLuint light_model_ctl1 = rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL];
850
851 light_model_ctl1 &= ~((3 << RADEON_EMISSIVE_SOURCE_SHIFT) |
852 (3 << RADEON_AMBIENT_SOURCE_SHIFT) |
853 (3 << RADEON_DIFFUSE_SOURCE_SHIFT) |
854 (3 << RADEON_SPECULAR_SOURCE_SHIFT));
855
856 if (ctx->Light.ColorMaterialEnabled) {
857 GLuint mask = ctx->Light.ColorMaterialBitmask;
858
859 if (mask & MAT_BIT_FRONT_EMISSION) {
860 light_model_ctl1 |= (RADEON_LM_SOURCE_VERTEX_DIFFUSE <<
861 RADEON_EMISSIVE_SOURCE_SHIFT);
862 }
863 else {
864 light_model_ctl1 |= (RADEON_LM_SOURCE_STATE_MULT <<
865 RADEON_EMISSIVE_SOURCE_SHIFT);
866 }
867
868 if (mask & MAT_BIT_FRONT_AMBIENT) {
869 light_model_ctl1 |= (RADEON_LM_SOURCE_VERTEX_DIFFUSE <<
870 RADEON_AMBIENT_SOURCE_SHIFT);
871 }
872 else {
873 light_model_ctl1 |= (RADEON_LM_SOURCE_STATE_MULT <<
874 RADEON_AMBIENT_SOURCE_SHIFT);
875 }
876
877 if (mask & MAT_BIT_FRONT_DIFFUSE) {
878 light_model_ctl1 |= (RADEON_LM_SOURCE_VERTEX_DIFFUSE <<
879 RADEON_DIFFUSE_SOURCE_SHIFT);
880 }
881 else {
882 light_model_ctl1 |= (RADEON_LM_SOURCE_STATE_MULT <<
883 RADEON_DIFFUSE_SOURCE_SHIFT);
884 }
885
886 if (mask & MAT_BIT_FRONT_SPECULAR) {
887 light_model_ctl1 |= (RADEON_LM_SOURCE_VERTEX_DIFFUSE <<
888 RADEON_SPECULAR_SOURCE_SHIFT);
889 }
890 else {
891 light_model_ctl1 |= (RADEON_LM_SOURCE_STATE_MULT <<
892 RADEON_SPECULAR_SOURCE_SHIFT);
893 }
894 }
895 else {
896 /* Default to MULT:
897 */
898 light_model_ctl1 |= (RADEON_LM_SOURCE_STATE_MULT << RADEON_EMISSIVE_SOURCE_SHIFT) |
899 (RADEON_LM_SOURCE_STATE_MULT << RADEON_AMBIENT_SOURCE_SHIFT) |
900 (RADEON_LM_SOURCE_STATE_MULT << RADEON_DIFFUSE_SOURCE_SHIFT) |
901 (RADEON_LM_SOURCE_STATE_MULT << RADEON_SPECULAR_SOURCE_SHIFT);
902 }
903
904 if (light_model_ctl1 != rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL]) {
905 RADEON_STATECHANGE( rmesa, tcl );
906 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] = light_model_ctl1;
907 }
908 }
909
910 void radeonUpdateMaterial( GLcontext *ctx )
911 {
912 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
913 GLfloat (*mat)[4] = ctx->Light.Material.Attrib;
914 GLfloat *fcmd = (GLfloat *)RADEON_DB_STATE( mtl );
915 GLuint mask = ~0;
916
917 if (ctx->Light.ColorMaterialEnabled)
918 mask &= ~ctx->Light.ColorMaterialBitmask;
919
920 if (RADEON_DEBUG & DEBUG_STATE)
921 fprintf(stderr, "%s\n", __FUNCTION__);
922
923
924 if (mask & MAT_BIT_FRONT_EMISSION) {
925 fcmd[MTL_EMMISSIVE_RED] = mat[MAT_ATTRIB_FRONT_EMISSION][0];
926 fcmd[MTL_EMMISSIVE_GREEN] = mat[MAT_ATTRIB_FRONT_EMISSION][1];
927 fcmd[MTL_EMMISSIVE_BLUE] = mat[MAT_ATTRIB_FRONT_EMISSION][2];
928 fcmd[MTL_EMMISSIVE_ALPHA] = mat[MAT_ATTRIB_FRONT_EMISSION][3];
929 }
930 if (mask & MAT_BIT_FRONT_AMBIENT) {
931 fcmd[MTL_AMBIENT_RED] = mat[MAT_ATTRIB_FRONT_AMBIENT][0];
932 fcmd[MTL_AMBIENT_GREEN] = mat[MAT_ATTRIB_FRONT_AMBIENT][1];
933 fcmd[MTL_AMBIENT_BLUE] = mat[MAT_ATTRIB_FRONT_AMBIENT][2];
934 fcmd[MTL_AMBIENT_ALPHA] = mat[MAT_ATTRIB_FRONT_AMBIENT][3];
935 }
936 if (mask & MAT_BIT_FRONT_DIFFUSE) {
937 fcmd[MTL_DIFFUSE_RED] = mat[MAT_ATTRIB_FRONT_DIFFUSE][0];
938 fcmd[MTL_DIFFUSE_GREEN] = mat[MAT_ATTRIB_FRONT_DIFFUSE][1];
939 fcmd[MTL_DIFFUSE_BLUE] = mat[MAT_ATTRIB_FRONT_DIFFUSE][2];
940 fcmd[MTL_DIFFUSE_ALPHA] = mat[MAT_ATTRIB_FRONT_DIFFUSE][3];
941 }
942 if (mask & MAT_BIT_FRONT_SPECULAR) {
943 fcmd[MTL_SPECULAR_RED] = mat[MAT_ATTRIB_FRONT_SPECULAR][0];
944 fcmd[MTL_SPECULAR_GREEN] = mat[MAT_ATTRIB_FRONT_SPECULAR][1];
945 fcmd[MTL_SPECULAR_BLUE] = mat[MAT_ATTRIB_FRONT_SPECULAR][2];
946 fcmd[MTL_SPECULAR_ALPHA] = mat[MAT_ATTRIB_FRONT_SPECULAR][3];
947 }
948 if (mask & MAT_BIT_FRONT_SHININESS) {
949 fcmd[MTL_SHININESS] = mat[MAT_ATTRIB_FRONT_SHININESS][0];
950 }
951
952 RADEON_DB_STATECHANGE( rmesa, &rmesa->hw.mtl );
953
954 check_twoside_fallback( ctx );
955 /* update_global_ambient( ctx );*/
956 }
957
958 /* _NEW_LIGHT
959 * _NEW_MODELVIEW
960 * _MESA_NEW_NEED_EYE_COORDS
961 *
962 * Uses derived state from mesa:
963 * _VP_inf_norm
964 * _h_inf_norm
965 * _Position
966 * _NormDirection
967 * _ModelViewInvScale
968 * _NeedEyeCoords
969 * _EyeZDir
970 *
971 * which are calculated in light.c and are correct for the current
972 * lighting space (model or eye), hence dependencies on _NEW_MODELVIEW
973 * and _MESA_NEW_NEED_EYE_COORDS.
974 */
975 static void update_light( GLcontext *ctx )
976 {
977 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
978
979 /* Have to check these, or have an automatic shortcircuit mechanism
980 * to remove noop statechanges. (Or just do a better job on the
981 * front end).
982 */
983 {
984 GLuint tmp = rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL];
985
986 if (ctx->_NeedEyeCoords)
987 tmp &= ~RADEON_LIGHT_IN_MODELSPACE;
988 else
989 tmp |= RADEON_LIGHT_IN_MODELSPACE;
990
991
992 /* Leave this test disabled: (unexplained q3 lockup) (even with
993 new packets)
994 */
995 if (tmp != rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL])
996 {
997 RADEON_STATECHANGE( rmesa, tcl );
998 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] = tmp;
999 }
1000 }
1001
1002 {
1003 GLfloat *fcmd = (GLfloat *)RADEON_DB_STATE( eye );
1004 fcmd[EYE_X] = ctx->_EyeZDir[0];
1005 fcmd[EYE_Y] = ctx->_EyeZDir[1];
1006 fcmd[EYE_Z] = - ctx->_EyeZDir[2];
1007 fcmd[EYE_RESCALE_FACTOR] = ctx->_ModelViewInvScale;
1008 RADEON_DB_STATECHANGE( rmesa, &rmesa->hw.eye );
1009 }
1010
1011
1012
1013 if (ctx->Light.Enabled) {
1014 GLint p;
1015 for (p = 0 ; p < MAX_LIGHTS; p++) {
1016 if (ctx->Light.Light[p].Enabled) {
1017 struct gl_light *l = &ctx->Light.Light[p];
1018 GLfloat *fcmd = (GLfloat *)RADEON_DB_STATE( lit[p] );
1019
1020 if (l->EyePosition[3] == 0.0) {
1021 COPY_3FV( &fcmd[LIT_POSITION_X], l->_VP_inf_norm );
1022 COPY_3FV( &fcmd[LIT_DIRECTION_X], l->_h_inf_norm );
1023 fcmd[LIT_POSITION_W] = 0;
1024 fcmd[LIT_DIRECTION_W] = 0;
1025 } else {
1026 COPY_4V( &fcmd[LIT_POSITION_X], l->_Position );
1027 fcmd[LIT_DIRECTION_X] = -l->_NormDirection[0];
1028 fcmd[LIT_DIRECTION_Y] = -l->_NormDirection[1];
1029 fcmd[LIT_DIRECTION_Z] = -l->_NormDirection[2];
1030 fcmd[LIT_DIRECTION_W] = 0;
1031 }
1032
1033 RADEON_DB_STATECHANGE( rmesa, &rmesa->hw.lit[p] );
1034 }
1035 }
1036 }
1037 }
1038
1039 static void radeonLightfv( GLcontext *ctx, GLenum light,
1040 GLenum pname, const GLfloat *params )
1041 {
1042 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1043 GLint p = light - GL_LIGHT0;
1044 struct gl_light *l = &ctx->Light.Light[p];
1045 GLfloat *fcmd = (GLfloat *)rmesa->hw.lit[p].cmd;
1046
1047
1048 switch (pname) {
1049 case GL_AMBIENT:
1050 case GL_DIFFUSE:
1051 case GL_SPECULAR:
1052 update_light_colors( ctx, p );
1053 break;
1054
1055 case GL_SPOT_DIRECTION:
1056 /* picked up in update_light */
1057 break;
1058
1059 case GL_POSITION: {
1060 /* positions picked up in update_light, but can do flag here */
1061 GLuint flag;
1062 GLuint idx = TCL_PER_LIGHT_CTL_0 + p/2;
1063
1064 /* FIXME: Set RANGE_ATTEN only when needed */
1065 if (p&1)
1066 flag = RADEON_LIGHT_1_IS_LOCAL;
1067 else
1068 flag = RADEON_LIGHT_0_IS_LOCAL;
1069
1070 RADEON_STATECHANGE(rmesa, tcl);
1071 if (l->EyePosition[3] != 0.0F)
1072 rmesa->hw.tcl.cmd[idx] |= flag;
1073 else
1074 rmesa->hw.tcl.cmd[idx] &= ~flag;
1075 break;
1076 }
1077
1078 case GL_SPOT_EXPONENT:
1079 RADEON_STATECHANGE(rmesa, lit[p]);
1080 fcmd[LIT_SPOT_EXPONENT] = params[0];
1081 break;
1082
1083 case GL_SPOT_CUTOFF: {
1084 GLuint flag = (p&1) ? RADEON_LIGHT_1_IS_SPOT : RADEON_LIGHT_0_IS_SPOT;
1085 GLuint idx = TCL_PER_LIGHT_CTL_0 + p/2;
1086
1087 RADEON_STATECHANGE(rmesa, lit[p]);
1088 fcmd[LIT_SPOT_CUTOFF] = l->_CosCutoff;
1089
1090 RADEON_STATECHANGE(rmesa, tcl);
1091 if (l->SpotCutoff != 180.0F)
1092 rmesa->hw.tcl.cmd[idx] |= flag;
1093 else
1094 rmesa->hw.tcl.cmd[idx] &= ~flag;
1095
1096 break;
1097 }
1098
1099 case GL_CONSTANT_ATTENUATION:
1100 RADEON_STATECHANGE(rmesa, lit[p]);
1101 fcmd[LIT_ATTEN_CONST] = params[0];
1102 if ( params[0] == 0.0 )
1103 fcmd[LIT_ATTEN_CONST_INV] = FLT_MAX;
1104 else
1105 fcmd[LIT_ATTEN_CONST_INV] = 1.0 / params[0];
1106 break;
1107 case GL_LINEAR_ATTENUATION:
1108 RADEON_STATECHANGE(rmesa, lit[p]);
1109 fcmd[LIT_ATTEN_LINEAR] = params[0];
1110 break;
1111 case GL_QUADRATIC_ATTENUATION:
1112 RADEON_STATECHANGE(rmesa, lit[p]);
1113 fcmd[LIT_ATTEN_QUADRATIC] = params[0];
1114 break;
1115 default:
1116 return;
1117 }
1118
1119 /* Set RANGE_ATTEN only when needed */
1120 switch (pname) {
1121 case GL_POSITION:
1122 case GL_CONSTANT_ATTENUATION:
1123 case GL_LINEAR_ATTENUATION:
1124 case GL_QUADRATIC_ATTENUATION:
1125 {
1126 GLuint *icmd = (GLuint *)RADEON_DB_STATE( tcl );
1127 GLuint idx = TCL_PER_LIGHT_CTL_0 + p/2;
1128 GLuint atten_flag = ( p&1 ) ? RADEON_LIGHT_1_ENABLE_RANGE_ATTEN
1129 : RADEON_LIGHT_0_ENABLE_RANGE_ATTEN;
1130 GLuint atten_const_flag = ( p&1 ) ? RADEON_LIGHT_1_CONSTANT_RANGE_ATTEN
1131 : RADEON_LIGHT_0_CONSTANT_RANGE_ATTEN;
1132
1133 if ( l->EyePosition[3] == 0.0F ||
1134 ( ( fcmd[LIT_ATTEN_CONST] == 0.0 || fcmd[LIT_ATTEN_CONST] == 1.0 ) &&
1135 fcmd[LIT_ATTEN_QUADRATIC] == 0.0 && fcmd[LIT_ATTEN_LINEAR] == 0.0 ) ) {
1136 /* Disable attenuation */
1137 icmd[idx] &= ~atten_flag;
1138 } else {
1139 if ( fcmd[LIT_ATTEN_QUADRATIC] == 0.0 && fcmd[LIT_ATTEN_LINEAR] == 0.0 ) {
1140 /* Enable only constant portion of attenuation calculation */
1141 icmd[idx] |= ( atten_flag | atten_const_flag );
1142 } else {
1143 /* Enable full attenuation calculation */
1144 icmd[idx] &= ~atten_const_flag;
1145 icmd[idx] |= atten_flag;
1146 }
1147 }
1148
1149 RADEON_DB_STATECHANGE( rmesa, &rmesa->hw.tcl );
1150 break;
1151 }
1152 default:
1153 break;
1154 }
1155 }
1156
1157
1158
1159
1160 static void radeonLightModelfv( GLcontext *ctx, GLenum pname,
1161 const GLfloat *param )
1162 {
1163 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1164
1165 switch (pname) {
1166 case GL_LIGHT_MODEL_AMBIENT:
1167 update_global_ambient( ctx );
1168 break;
1169
1170 case GL_LIGHT_MODEL_LOCAL_VIEWER:
1171 RADEON_STATECHANGE( rmesa, tcl );
1172 if (ctx->Light.Model.LocalViewer)
1173 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] |= RADEON_LOCAL_VIEWER;
1174 else
1175 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] &= ~RADEON_LOCAL_VIEWER;
1176 break;
1177
1178 case GL_LIGHT_MODEL_TWO_SIDE:
1179 RADEON_STATECHANGE( rmesa, tcl );
1180 if (ctx->Light.Model.TwoSide)
1181 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] |= RADEON_LIGHT_TWOSIDE;
1182 else
1183 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] &= ~RADEON_LIGHT_TWOSIDE;
1184
1185 check_twoside_fallback( ctx );
1186
1187 if (rmesa->TclFallback) {
1188 radeonChooseRenderState( ctx );
1189 radeonChooseVertexState( ctx );
1190 }
1191 break;
1192
1193 case GL_LIGHT_MODEL_COLOR_CONTROL:
1194 radeonUpdateSpecular(ctx);
1195 break;
1196
1197 default:
1198 break;
1199 }
1200 }
1201
1202 static void radeonShadeModel( GLcontext *ctx, GLenum mode )
1203 {
1204 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1205 GLuint s = rmesa->hw.set.cmd[SET_SE_CNTL];
1206
1207 s &= ~(RADEON_DIFFUSE_SHADE_MASK |
1208 RADEON_ALPHA_SHADE_MASK |
1209 RADEON_SPECULAR_SHADE_MASK |
1210 RADEON_FOG_SHADE_MASK);
1211
1212 switch ( mode ) {
1213 case GL_FLAT:
1214 s |= (RADEON_DIFFUSE_SHADE_FLAT |
1215 RADEON_ALPHA_SHADE_FLAT |
1216 RADEON_SPECULAR_SHADE_FLAT |
1217 RADEON_FOG_SHADE_FLAT);
1218 break;
1219 case GL_SMOOTH:
1220 s |= (RADEON_DIFFUSE_SHADE_GOURAUD |
1221 RADEON_ALPHA_SHADE_GOURAUD |
1222 RADEON_SPECULAR_SHADE_GOURAUD |
1223 RADEON_FOG_SHADE_GOURAUD);
1224 break;
1225 default:
1226 return;
1227 }
1228
1229 if ( rmesa->hw.set.cmd[SET_SE_CNTL] != s ) {
1230 RADEON_STATECHANGE( rmesa, set );
1231 rmesa->hw.set.cmd[SET_SE_CNTL] = s;
1232 }
1233 }
1234
1235
1236 /* =============================================================
1237 * User clip planes
1238 */
1239
1240 static void radeonClipPlane( GLcontext *ctx, GLenum plane, const GLfloat *eq )
1241 {
1242 GLint p = (GLint) plane - (GLint) GL_CLIP_PLANE0;
1243 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1244 GLint *ip = (GLint *)ctx->Transform._ClipUserPlane[p];
1245
1246 RADEON_STATECHANGE( rmesa, ucp[p] );
1247 rmesa->hw.ucp[p].cmd[UCP_X] = ip[0];
1248 rmesa->hw.ucp[p].cmd[UCP_Y] = ip[1];
1249 rmesa->hw.ucp[p].cmd[UCP_Z] = ip[2];
1250 rmesa->hw.ucp[p].cmd[UCP_W] = ip[3];
1251 }
1252
1253 static void radeonUpdateClipPlanes( GLcontext *ctx )
1254 {
1255 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1256 GLuint p;
1257
1258 for (p = 0; p < ctx->Const.MaxClipPlanes; p++) {
1259 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
1260 GLint *ip = (GLint *)ctx->Transform._ClipUserPlane[p];
1261
1262 RADEON_STATECHANGE( rmesa, ucp[p] );
1263 rmesa->hw.ucp[p].cmd[UCP_X] = ip[0];
1264 rmesa->hw.ucp[p].cmd[UCP_Y] = ip[1];
1265 rmesa->hw.ucp[p].cmd[UCP_Z] = ip[2];
1266 rmesa->hw.ucp[p].cmd[UCP_W] = ip[3];
1267 }
1268 }
1269 }
1270
1271
1272 /* =============================================================
1273 * Stencil
1274 */
1275
1276 static void radeonStencilFunc( GLcontext *ctx, GLenum func,
1277 GLint ref, GLuint mask )
1278 {
1279 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1280 GLuint refmask = ((ctx->Stencil.Ref[0] << RADEON_STENCIL_REF_SHIFT) |
1281 (ctx->Stencil.ValueMask[0] << RADEON_STENCIL_MASK_SHIFT));
1282
1283 RADEON_STATECHANGE( rmesa, ctx );
1284 RADEON_STATECHANGE( rmesa, msk );
1285
1286 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] &= ~RADEON_STENCIL_TEST_MASK;
1287 rmesa->hw.msk.cmd[MSK_RB3D_STENCILREFMASK] &= ~(RADEON_STENCIL_REF_MASK|
1288 RADEON_STENCIL_VALUE_MASK);
1289
1290 switch ( ctx->Stencil.Function[0] ) {
1291 case GL_NEVER:
1292 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_TEST_NEVER;
1293 break;
1294 case GL_LESS:
1295 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_TEST_LESS;
1296 break;
1297 case GL_EQUAL:
1298 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_TEST_EQUAL;
1299 break;
1300 case GL_LEQUAL:
1301 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_TEST_LEQUAL;
1302 break;
1303 case GL_GREATER:
1304 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_TEST_GREATER;
1305 break;
1306 case GL_NOTEQUAL:
1307 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_TEST_NEQUAL;
1308 break;
1309 case GL_GEQUAL:
1310 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_TEST_GEQUAL;
1311 break;
1312 case GL_ALWAYS:
1313 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_TEST_ALWAYS;
1314 break;
1315 }
1316
1317 rmesa->hw.msk.cmd[MSK_RB3D_STENCILREFMASK] |= refmask;
1318 }
1319
1320 static void radeonStencilMask( GLcontext *ctx, GLuint mask )
1321 {
1322 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1323
1324 RADEON_STATECHANGE( rmesa, msk );
1325 rmesa->hw.msk.cmd[MSK_RB3D_STENCILREFMASK] &= ~RADEON_STENCIL_WRITE_MASK;
1326 rmesa->hw.msk.cmd[MSK_RB3D_STENCILREFMASK] |=
1327 (ctx->Stencil.WriteMask[0] << RADEON_STENCIL_WRITEMASK_SHIFT);
1328 }
1329
1330 static void radeonStencilOp( GLcontext *ctx, GLenum fail,
1331 GLenum zfail, GLenum zpass )
1332 {
1333 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1334
1335 /* radeon 7200 have stencil bug, DEC and INC_WRAP will actually both do DEC_WRAP,
1336 and DEC_WRAP (and INVERT) will do INVERT. No way to get correct INC_WRAP and DEC,
1337 but DEC_WRAP can be fixed by using DEC and INC_WRAP at least use INC. */
1338
1339 GLuint tempRADEON_STENCIL_FAIL_DEC_WRAP;
1340 GLuint tempRADEON_STENCIL_FAIL_INC_WRAP;
1341 GLuint tempRADEON_STENCIL_ZFAIL_DEC_WRAP;
1342 GLuint tempRADEON_STENCIL_ZFAIL_INC_WRAP;
1343 GLuint tempRADEON_STENCIL_ZPASS_DEC_WRAP;
1344 GLuint tempRADEON_STENCIL_ZPASS_INC_WRAP;
1345
1346 if (rmesa->radeonScreen->chipset & RADEON_CHIPSET_BROKEN_STENCIL) {
1347 tempRADEON_STENCIL_FAIL_DEC_WRAP = RADEON_STENCIL_FAIL_DEC;
1348 tempRADEON_STENCIL_FAIL_INC_WRAP = RADEON_STENCIL_FAIL_INC;
1349 tempRADEON_STENCIL_ZFAIL_DEC_WRAP = RADEON_STENCIL_ZFAIL_DEC;
1350 tempRADEON_STENCIL_ZFAIL_INC_WRAP = RADEON_STENCIL_ZFAIL_INC;
1351 tempRADEON_STENCIL_ZPASS_DEC_WRAP = RADEON_STENCIL_ZPASS_DEC;
1352 tempRADEON_STENCIL_ZPASS_INC_WRAP = RADEON_STENCIL_ZPASS_INC;
1353 }
1354 else {
1355 tempRADEON_STENCIL_FAIL_DEC_WRAP = RADEON_STENCIL_FAIL_DEC_WRAP;
1356 tempRADEON_STENCIL_FAIL_INC_WRAP = RADEON_STENCIL_FAIL_INC_WRAP;
1357 tempRADEON_STENCIL_ZFAIL_DEC_WRAP = RADEON_STENCIL_ZFAIL_DEC_WRAP;
1358 tempRADEON_STENCIL_ZFAIL_INC_WRAP = RADEON_STENCIL_ZFAIL_INC_WRAP;
1359 tempRADEON_STENCIL_ZPASS_DEC_WRAP = RADEON_STENCIL_ZPASS_DEC_WRAP;
1360 tempRADEON_STENCIL_ZPASS_INC_WRAP = RADEON_STENCIL_ZPASS_INC_WRAP;
1361 }
1362
1363 RADEON_STATECHANGE( rmesa, ctx );
1364 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] &= ~(RADEON_STENCIL_FAIL_MASK |
1365 RADEON_STENCIL_ZFAIL_MASK |
1366 RADEON_STENCIL_ZPASS_MASK);
1367
1368 switch ( ctx->Stencil.FailFunc[0] ) {
1369 case GL_KEEP:
1370 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_FAIL_KEEP;
1371 break;
1372 case GL_ZERO:
1373 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_FAIL_ZERO;
1374 break;
1375 case GL_REPLACE:
1376 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_FAIL_REPLACE;
1377 break;
1378 case GL_INCR:
1379 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_FAIL_INC;
1380 break;
1381 case GL_DECR:
1382 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_FAIL_DEC;
1383 break;
1384 case GL_INCR_WRAP:
1385 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= tempRADEON_STENCIL_FAIL_INC_WRAP;
1386 break;
1387 case GL_DECR_WRAP:
1388 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= tempRADEON_STENCIL_FAIL_DEC_WRAP;
1389 break;
1390 case GL_INVERT:
1391 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_FAIL_INVERT;
1392 break;
1393 }
1394
1395 switch ( ctx->Stencil.ZFailFunc[0] ) {
1396 case GL_KEEP:
1397 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZFAIL_KEEP;
1398 break;
1399 case GL_ZERO:
1400 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZFAIL_ZERO;
1401 break;
1402 case GL_REPLACE:
1403 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZFAIL_REPLACE;
1404 break;
1405 case GL_INCR:
1406 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZFAIL_INC;
1407 break;
1408 case GL_DECR:
1409 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZFAIL_DEC;
1410 break;
1411 case GL_INCR_WRAP:
1412 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= tempRADEON_STENCIL_ZFAIL_INC_WRAP;
1413 break;
1414 case GL_DECR_WRAP:
1415 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= tempRADEON_STENCIL_ZFAIL_DEC_WRAP;
1416 break;
1417 case GL_INVERT:
1418 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZFAIL_INVERT;
1419 break;
1420 }
1421
1422 switch ( ctx->Stencil.ZPassFunc[0] ) {
1423 case GL_KEEP:
1424 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZPASS_KEEP;
1425 break;
1426 case GL_ZERO:
1427 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZPASS_ZERO;
1428 break;
1429 case GL_REPLACE:
1430 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZPASS_REPLACE;
1431 break;
1432 case GL_INCR:
1433 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZPASS_INC;
1434 break;
1435 case GL_DECR:
1436 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZPASS_DEC;
1437 break;
1438 case GL_INCR_WRAP:
1439 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= tempRADEON_STENCIL_ZPASS_INC_WRAP;
1440 break;
1441 case GL_DECR_WRAP:
1442 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= tempRADEON_STENCIL_ZPASS_DEC_WRAP;
1443 break;
1444 case GL_INVERT:
1445 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_STENCIL_ZPASS_INVERT;
1446 break;
1447 }
1448 }
1449
1450 static void radeonClearStencil( GLcontext *ctx, GLint s )
1451 {
1452 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1453
1454 rmesa->state.stencil.clear =
1455 ((GLuint) ctx->Stencil.Clear |
1456 (0xff << RADEON_STENCIL_MASK_SHIFT) |
1457 (ctx->Stencil.WriteMask[0] << RADEON_STENCIL_WRITEMASK_SHIFT));
1458 }
1459
1460
1461 /* =============================================================
1462 * Window position and viewport transformation
1463 */
1464
1465 /*
1466 * To correctly position primitives:
1467 */
1468 #define SUBPIXEL_X 0.125
1469 #define SUBPIXEL_Y 0.125
1470
1471 void radeonUpdateWindow( GLcontext *ctx )
1472 {
1473 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1474 __DRIdrawablePrivate *dPriv = rmesa->dri.drawable;
1475 GLfloat xoffset = (GLfloat)dPriv->x;
1476 GLfloat yoffset = (GLfloat)dPriv->y + dPriv->h;
1477 const GLfloat *v = ctx->Viewport._WindowMap.m;
1478
1479 GLfloat sx = v[MAT_SX];
1480 GLfloat tx = v[MAT_TX] + xoffset + SUBPIXEL_X;
1481 GLfloat sy = - v[MAT_SY];
1482 GLfloat ty = (- v[MAT_TY]) + yoffset + SUBPIXEL_Y;
1483 GLfloat sz = v[MAT_SZ] * rmesa->state.depth.scale;
1484 GLfloat tz = v[MAT_TZ] * rmesa->state.depth.scale;
1485 RADEON_FIREVERTICES( rmesa );
1486 RADEON_STATECHANGE( rmesa, vpt );
1487
1488 rmesa->hw.vpt.cmd[VPT_SE_VPORT_XSCALE] = *(GLuint *)&sx;
1489 rmesa->hw.vpt.cmd[VPT_SE_VPORT_XOFFSET] = *(GLuint *)&tx;
1490 rmesa->hw.vpt.cmd[VPT_SE_VPORT_YSCALE] = *(GLuint *)&sy;
1491 rmesa->hw.vpt.cmd[VPT_SE_VPORT_YOFFSET] = *(GLuint *)&ty;
1492 rmesa->hw.vpt.cmd[VPT_SE_VPORT_ZSCALE] = *(GLuint *)&sz;
1493 rmesa->hw.vpt.cmd[VPT_SE_VPORT_ZOFFSET] = *(GLuint *)&tz;
1494 }
1495
1496
1497
1498 static void radeonViewport( GLcontext *ctx, GLint x, GLint y,
1499 GLsizei width, GLsizei height )
1500 {
1501 /* update size of Mesa/software ancillary buffers */
1502 _mesa_ResizeBuffersMESA();
1503 /* Don't pipeline viewport changes, conflict with window offset
1504 * setting below. Could apply deltas to rescue pipelined viewport
1505 * values, or keep the originals hanging around.
1506 */
1507 RADEON_FIREVERTICES( RADEON_CONTEXT(ctx) );
1508 radeonUpdateWindow( ctx );
1509 }
1510
1511 static void radeonDepthRange( GLcontext *ctx, GLclampd nearval,
1512 GLclampd farval )
1513 {
1514 radeonUpdateWindow( ctx );
1515 }
1516
1517 void radeonUpdateViewportOffset( GLcontext *ctx )
1518 {
1519 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1520 __DRIdrawablePrivate *dPriv = rmesa->dri.drawable;
1521 GLfloat xoffset = (GLfloat)dPriv->x;
1522 GLfloat yoffset = (GLfloat)dPriv->y + dPriv->h;
1523 const GLfloat *v = ctx->Viewport._WindowMap.m;
1524
1525 GLfloat tx = v[MAT_TX] + xoffset;
1526 GLfloat ty = (- v[MAT_TY]) + yoffset;
1527
1528 if ( rmesa->hw.vpt.cmd[VPT_SE_VPORT_XOFFSET] != *(GLuint *)&tx ||
1529 rmesa->hw.vpt.cmd[VPT_SE_VPORT_YOFFSET] != *(GLuint *)&ty )
1530 {
1531 /* Note: this should also modify whatever data the context reset
1532 * code uses...
1533 */
1534 rmesa->hw.vpt.cmd[VPT_SE_VPORT_XOFFSET] = *(GLuint *)&tx;
1535 rmesa->hw.vpt.cmd[VPT_SE_VPORT_YOFFSET] = *(GLuint *)&ty;
1536
1537 /* update polygon stipple x/y screen offset */
1538 {
1539 GLuint stx, sty;
1540 GLuint m = rmesa->hw.msc.cmd[MSC_RE_MISC];
1541
1542 m &= ~(RADEON_STIPPLE_X_OFFSET_MASK |
1543 RADEON_STIPPLE_Y_OFFSET_MASK);
1544
1545 /* add magic offsets, then invert */
1546 stx = 31 - ((rmesa->dri.drawable->x - 1) & RADEON_STIPPLE_COORD_MASK);
1547 sty = 31 - ((rmesa->dri.drawable->y + rmesa->dri.drawable->h - 1)
1548 & RADEON_STIPPLE_COORD_MASK);
1549
1550 m |= ((stx << RADEON_STIPPLE_X_OFFSET_SHIFT) |
1551 (sty << RADEON_STIPPLE_Y_OFFSET_SHIFT));
1552
1553 if ( rmesa->hw.msc.cmd[MSC_RE_MISC] != m ) {
1554 RADEON_STATECHANGE( rmesa, msc );
1555 rmesa->hw.msc.cmd[MSC_RE_MISC] = m;
1556 }
1557 }
1558 }
1559
1560 radeonUpdateScissor( ctx );
1561 }
1562
1563
1564
1565 /* =============================================================
1566 * Miscellaneous
1567 */
1568
1569 static void radeonClearColor( GLcontext *ctx, const GLfloat color[4] )
1570 {
1571 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1572 GLubyte c[4];
1573 CLAMPED_FLOAT_TO_UBYTE(c[0], color[0]);
1574 CLAMPED_FLOAT_TO_UBYTE(c[1], color[1]);
1575 CLAMPED_FLOAT_TO_UBYTE(c[2], color[2]);
1576 CLAMPED_FLOAT_TO_UBYTE(c[3], color[3]);
1577 rmesa->state.color.clear = radeonPackColor( rmesa->radeonScreen->cpp,
1578 c[0], c[1], c[2], c[3] );
1579 }
1580
1581
1582 static void radeonRenderMode( GLcontext *ctx, GLenum mode )
1583 {
1584 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1585 FALLBACK( rmesa, RADEON_FALLBACK_RENDER_MODE, (mode != GL_RENDER) );
1586 }
1587
1588
1589 static GLuint radeon_rop_tab[] = {
1590 RADEON_ROP_CLEAR,
1591 RADEON_ROP_AND,
1592 RADEON_ROP_AND_REVERSE,
1593 RADEON_ROP_COPY,
1594 RADEON_ROP_AND_INVERTED,
1595 RADEON_ROP_NOOP,
1596 RADEON_ROP_XOR,
1597 RADEON_ROP_OR,
1598 RADEON_ROP_NOR,
1599 RADEON_ROP_EQUIV,
1600 RADEON_ROP_INVERT,
1601 RADEON_ROP_OR_REVERSE,
1602 RADEON_ROP_COPY_INVERTED,
1603 RADEON_ROP_OR_INVERTED,
1604 RADEON_ROP_NAND,
1605 RADEON_ROP_SET,
1606 };
1607
1608 static void radeonLogicOpCode( GLcontext *ctx, GLenum opcode )
1609 {
1610 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1611 GLuint rop = (GLuint)opcode - GL_CLEAR;
1612
1613 ASSERT( rop < 16 );
1614
1615 RADEON_STATECHANGE( rmesa, msk );
1616 rmesa->hw.msk.cmd[MSK_RB3D_ROPCNTL] = radeon_rop_tab[rop];
1617 }
1618
1619
1620 void radeonSetCliprects( radeonContextPtr rmesa, GLenum mode )
1621 {
1622 __DRIdrawablePrivate *dPriv = rmesa->dri.drawable;
1623
1624 switch ( mode ) {
1625 case GL_FRONT_LEFT:
1626 rmesa->numClipRects = dPriv->numClipRects;
1627 rmesa->pClipRects = dPriv->pClipRects;
1628 break;
1629 case GL_BACK_LEFT:
1630 /* Can't ignore 2d windows if we are page flipping.
1631 */
1632 if ( dPriv->numBackClipRects == 0 || rmesa->doPageFlip ) {
1633 rmesa->numClipRects = dPriv->numClipRects;
1634 rmesa->pClipRects = dPriv->pClipRects;
1635 }
1636 else {
1637 rmesa->numClipRects = dPriv->numBackClipRects;
1638 rmesa->pClipRects = dPriv->pBackClipRects;
1639 }
1640 break;
1641 default:
1642 fprintf(stderr, "bad mode in radeonSetCliprects\n");
1643 return;
1644 }
1645
1646 if (rmesa->state.scissor.enabled)
1647 radeonRecalcScissorRects( rmesa );
1648 }
1649
1650
1651 static void radeonDrawBuffer( GLcontext *ctx, GLenum mode )
1652 {
1653 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1654
1655 if (RADEON_DEBUG & DEBUG_DRI)
1656 fprintf(stderr, "%s %s\n", __FUNCTION__,
1657 _mesa_lookup_enum_by_nr( mode ));
1658
1659 RADEON_FIREVERTICES(rmesa); /* don't pipeline cliprect changes */
1660
1661 /*
1662 * _DrawDestMask is easier to cope with than <mode>.
1663 */
1664 switch ( ctx->Color._DrawDestMask[0] ) {
1665 case DD_FRONT_LEFT_BIT:
1666 FALLBACK( rmesa, RADEON_FALLBACK_DRAW_BUFFER, GL_FALSE );
1667 radeonSetCliprects( rmesa, GL_FRONT_LEFT );
1668 break;
1669 case DD_BACK_LEFT_BIT:
1670 FALLBACK( rmesa, RADEON_FALLBACK_DRAW_BUFFER, GL_FALSE );
1671 radeonSetCliprects( rmesa, GL_BACK_LEFT );
1672 break;
1673 default:
1674 /* GL_NONE or GL_FRONT_AND_BACK or stereo left&right, etc */
1675 FALLBACK( rmesa, RADEON_FALLBACK_DRAW_BUFFER, GL_TRUE );
1676 return;
1677 }
1678
1679 /* We want to update the s/w rast state too so that r200SetBuffer()
1680 * gets called.
1681 */
1682 _swrast_DrawBuffer(ctx, mode);
1683
1684 RADEON_STATECHANGE( rmesa, ctx );
1685 rmesa->hw.ctx.cmd[CTX_RB3D_COLOROFFSET] = ((rmesa->state.color.drawOffset +
1686 rmesa->radeonScreen->fbLocation)
1687 & RADEON_COLOROFFSET_MASK);
1688 rmesa->hw.ctx.cmd[CTX_RB3D_COLORPITCH] = rmesa->state.color.drawPitch;
1689 }
1690
1691 static void radeonReadBuffer( GLcontext *ctx, GLenum mode )
1692 {
1693 /* nothing, until we implement h/w glRead/CopyPixels or CopyTexImage */
1694 }
1695
1696
1697 /* =============================================================
1698 * State enable/disable
1699 */
1700
1701 static void radeonEnable( GLcontext *ctx, GLenum cap, GLboolean state )
1702 {
1703 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
1704 GLuint p, flag;
1705
1706 if ( RADEON_DEBUG & DEBUG_STATE )
1707 fprintf( stderr, "%s( %s = %s )\n", __FUNCTION__,
1708 _mesa_lookup_enum_by_nr( cap ),
1709 state ? "GL_TRUE" : "GL_FALSE" );
1710
1711 switch ( cap ) {
1712 /* Fast track this one...
1713 */
1714 case GL_TEXTURE_1D:
1715 case GL_TEXTURE_2D:
1716 case GL_TEXTURE_3D:
1717 break;
1718
1719 case GL_ALPHA_TEST:
1720 RADEON_STATECHANGE( rmesa, ctx );
1721 if (state) {
1722 rmesa->hw.ctx.cmd[CTX_PP_CNTL] |= RADEON_ALPHA_TEST_ENABLE;
1723 } else {
1724 rmesa->hw.ctx.cmd[CTX_PP_CNTL] &= ~RADEON_ALPHA_TEST_ENABLE;
1725 }
1726 break;
1727
1728 case GL_BLEND:
1729 RADEON_STATECHANGE( rmesa, ctx );
1730 if (state) {
1731 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= RADEON_ALPHA_BLEND_ENABLE;
1732 } else {
1733 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~RADEON_ALPHA_BLEND_ENABLE;
1734 }
1735 if ( ctx->Color._LogicOpEnabled ) {
1736 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= RADEON_ROP_ENABLE;
1737 } else {
1738 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~RADEON_ROP_ENABLE;
1739 }
1740
1741 /* Catch a possible fallback:
1742 */
1743 if (state) {
1744 ctx->Driver.BlendEquationSeparate( ctx,
1745 ctx->Color.BlendEquationRGB,
1746 ctx->Color.BlendEquationA );
1747 ctx->Driver.BlendFuncSeparate( ctx, ctx->Color.BlendSrcRGB,
1748 ctx->Color.BlendDstRGB,
1749 ctx->Color.BlendSrcA,
1750 ctx->Color.BlendDstA );
1751 }
1752 else {
1753 FALLBACK( rmesa, RADEON_FALLBACK_BLEND_FUNC, GL_FALSE );
1754 FALLBACK( rmesa, RADEON_FALLBACK_BLEND_EQ, GL_FALSE );
1755 }
1756 break;
1757
1758 case GL_CLIP_PLANE0:
1759 case GL_CLIP_PLANE1:
1760 case GL_CLIP_PLANE2:
1761 case GL_CLIP_PLANE3:
1762 case GL_CLIP_PLANE4:
1763 case GL_CLIP_PLANE5:
1764 p = cap-GL_CLIP_PLANE0;
1765 RADEON_STATECHANGE( rmesa, tcl );
1766 if (state) {
1767 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] |= (RADEON_UCP_ENABLE_0<<p);
1768 radeonClipPlane( ctx, cap, NULL );
1769 }
1770 else {
1771 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] &= ~(RADEON_UCP_ENABLE_0<<p);
1772 }
1773 break;
1774
1775 case GL_COLOR_MATERIAL:
1776 radeonColorMaterial( ctx, 0, 0 );
1777 radeonUpdateMaterial( ctx );
1778 break;
1779
1780 case GL_CULL_FACE:
1781 radeonCullFace( ctx, 0 );
1782 break;
1783
1784 case GL_DEPTH_TEST:
1785 RADEON_STATECHANGE(rmesa, ctx );
1786 if ( state ) {
1787 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= RADEON_Z_ENABLE;
1788 } else {
1789 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~RADEON_Z_ENABLE;
1790 }
1791 break;
1792
1793 case GL_DITHER:
1794 RADEON_STATECHANGE(rmesa, ctx );
1795 if ( state ) {
1796 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= RADEON_DITHER_ENABLE;
1797 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~rmesa->state.color.roundEnable;
1798 } else {
1799 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~RADEON_DITHER_ENABLE;
1800 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= rmesa->state.color.roundEnable;
1801 }
1802 break;
1803
1804 case GL_FOG:
1805 RADEON_STATECHANGE(rmesa, ctx );
1806 if ( state ) {
1807 rmesa->hw.ctx.cmd[CTX_PP_CNTL] |= RADEON_FOG_ENABLE;
1808 radeonFogfv( ctx, GL_FOG_MODE, 0 );
1809 } else {
1810 rmesa->hw.ctx.cmd[CTX_PP_CNTL] &= ~RADEON_FOG_ENABLE;
1811 RADEON_STATECHANGE(rmesa, tcl);
1812 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] &= ~RADEON_TCL_FOG_MASK;
1813 }
1814 radeonUpdateSpecular( ctx ); /* for PK_SPEC */
1815 if (rmesa->TclFallback)
1816 radeonChooseVertexState( ctx );
1817 _mesa_allow_light_in_model( ctx, !state );
1818 break;
1819
1820 case GL_LIGHT0:
1821 case GL_LIGHT1:
1822 case GL_LIGHT2:
1823 case GL_LIGHT3:
1824 case GL_LIGHT4:
1825 case GL_LIGHT5:
1826 case GL_LIGHT6:
1827 case GL_LIGHT7:
1828 RADEON_STATECHANGE(rmesa, tcl);
1829 p = cap - GL_LIGHT0;
1830 if (p&1)
1831 flag = (RADEON_LIGHT_1_ENABLE |
1832 RADEON_LIGHT_1_ENABLE_AMBIENT |
1833 RADEON_LIGHT_1_ENABLE_SPECULAR);
1834 else
1835 flag = (RADEON_LIGHT_0_ENABLE |
1836 RADEON_LIGHT_0_ENABLE_AMBIENT |
1837 RADEON_LIGHT_0_ENABLE_SPECULAR);
1838
1839 if (state)
1840 rmesa->hw.tcl.cmd[p/2 + TCL_PER_LIGHT_CTL_0] |= flag;
1841 else
1842 rmesa->hw.tcl.cmd[p/2 + TCL_PER_LIGHT_CTL_0] &= ~flag;
1843
1844 /*
1845 */
1846 update_light_colors( ctx, p );
1847 break;
1848
1849 case GL_LIGHTING:
1850 RADEON_STATECHANGE(rmesa, tcl);
1851 radeonUpdateSpecular(ctx);
1852 check_twoside_fallback( ctx );
1853 break;
1854
1855 case GL_LINE_SMOOTH:
1856 RADEON_STATECHANGE( rmesa, ctx );
1857 if ( state ) {
1858 rmesa->hw.ctx.cmd[CTX_PP_CNTL] |= RADEON_ANTI_ALIAS_LINE;
1859 } else {
1860 rmesa->hw.ctx.cmd[CTX_PP_CNTL] &= ~RADEON_ANTI_ALIAS_LINE;
1861 }
1862 break;
1863
1864 case GL_LINE_STIPPLE:
1865 RADEON_STATECHANGE( rmesa, ctx );
1866 if ( state ) {
1867 rmesa->hw.ctx.cmd[CTX_PP_CNTL] |= RADEON_PATTERN_ENABLE;
1868 } else {
1869 rmesa->hw.ctx.cmd[CTX_PP_CNTL] &= ~RADEON_PATTERN_ENABLE;
1870 }
1871 break;
1872
1873 case GL_COLOR_LOGIC_OP:
1874 RADEON_STATECHANGE( rmesa, ctx );
1875 if ( ctx->Color._LogicOpEnabled ) {
1876 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= RADEON_ROP_ENABLE;
1877 } else {
1878 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~RADEON_ROP_ENABLE;
1879 }
1880 break;
1881
1882 case GL_NORMALIZE:
1883 RADEON_STATECHANGE( rmesa, tcl );
1884 if ( state ) {
1885 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] |= RADEON_NORMALIZE_NORMALS;
1886 } else {
1887 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] &= ~RADEON_NORMALIZE_NORMALS;
1888 }
1889 break;
1890
1891 case GL_POLYGON_OFFSET_POINT:
1892 if (rmesa->dri.drmMinor == 1) {
1893 radeonChooseRenderState( ctx );
1894 }
1895 else {
1896 RADEON_STATECHANGE( rmesa, set );
1897 if ( state ) {
1898 rmesa->hw.set.cmd[SET_SE_CNTL] |= RADEON_ZBIAS_ENABLE_POINT;
1899 } else {
1900 rmesa->hw.set.cmd[SET_SE_CNTL] &= ~RADEON_ZBIAS_ENABLE_POINT;
1901 }
1902 }
1903 break;
1904
1905 case GL_POLYGON_OFFSET_LINE:
1906 if (rmesa->dri.drmMinor == 1) {
1907 radeonChooseRenderState( ctx );
1908 }
1909 else {
1910 RADEON_STATECHANGE( rmesa, set );
1911 if ( state ) {
1912 rmesa->hw.set.cmd[SET_SE_CNTL] |= RADEON_ZBIAS_ENABLE_LINE;
1913 } else {
1914 rmesa->hw.set.cmd[SET_SE_CNTL] &= ~RADEON_ZBIAS_ENABLE_LINE;
1915 }
1916 }
1917 break;
1918
1919 case GL_POLYGON_OFFSET_FILL:
1920 if (rmesa->dri.drmMinor == 1) {
1921 radeonChooseRenderState( ctx );
1922 }
1923 else {
1924 RADEON_STATECHANGE( rmesa, set );
1925 if ( state ) {
1926 rmesa->hw.set.cmd[SET_SE_CNTL] |= RADEON_ZBIAS_ENABLE_TRI;
1927 } else {
1928 rmesa->hw.set.cmd[SET_SE_CNTL] &= ~RADEON_ZBIAS_ENABLE_TRI;
1929 }
1930 }
1931 break;
1932
1933 case GL_POLYGON_SMOOTH:
1934 RADEON_STATECHANGE( rmesa, ctx );
1935 if ( state ) {
1936 rmesa->hw.ctx.cmd[CTX_PP_CNTL] |= RADEON_ANTI_ALIAS_POLY;
1937 } else {
1938 rmesa->hw.ctx.cmd[CTX_PP_CNTL] &= ~RADEON_ANTI_ALIAS_POLY;
1939 }
1940 break;
1941
1942 case GL_POLYGON_STIPPLE:
1943 RADEON_STATECHANGE(rmesa, ctx );
1944 if ( state ) {
1945 rmesa->hw.ctx.cmd[CTX_PP_CNTL] |= RADEON_STIPPLE_ENABLE;
1946 } else {
1947 rmesa->hw.ctx.cmd[CTX_PP_CNTL] &= ~RADEON_STIPPLE_ENABLE;
1948 }
1949 break;
1950
1951 case GL_RESCALE_NORMAL_EXT: {
1952 GLboolean tmp = ctx->_NeedEyeCoords ? state : !state;
1953 RADEON_STATECHANGE( rmesa, tcl );
1954 if ( tmp ) {
1955 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] |= RADEON_RESCALE_NORMALS;
1956 } else {
1957 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] &= ~RADEON_RESCALE_NORMALS;
1958 }
1959 break;
1960 }
1961
1962 case GL_SCISSOR_TEST:
1963 RADEON_FIREVERTICES( rmesa );
1964 rmesa->state.scissor.enabled = state;
1965 radeonUpdateScissor( ctx );
1966 break;
1967
1968 case GL_STENCIL_TEST:
1969 if ( rmesa->state.stencil.hwBuffer ) {
1970 RADEON_STATECHANGE( rmesa, ctx );
1971 if ( state ) {
1972 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= RADEON_STENCIL_ENABLE;
1973 } else {
1974 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~RADEON_STENCIL_ENABLE;
1975 }
1976 } else {
1977 FALLBACK( rmesa, RADEON_FALLBACK_STENCIL, state );
1978 }
1979 break;
1980
1981 case GL_TEXTURE_GEN_Q:
1982 case GL_TEXTURE_GEN_R:
1983 case GL_TEXTURE_GEN_S:
1984 case GL_TEXTURE_GEN_T:
1985 /* Picked up in radeonUpdateTextureState.
1986 */
1987 rmesa->recheck_texgen[ctx->Texture.CurrentUnit] = GL_TRUE;
1988 break;
1989
1990 case GL_COLOR_SUM_EXT:
1991 radeonUpdateSpecular ( ctx );
1992 break;
1993
1994 default:
1995 return;
1996 }
1997 }
1998
1999
2000 static void radeonLightingSpaceChange( GLcontext *ctx )
2001 {
2002 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
2003 GLboolean tmp;
2004 RADEON_STATECHANGE( rmesa, tcl );
2005
2006 if (RADEON_DEBUG & DEBUG_STATE)
2007 fprintf(stderr, "%s %d BEFORE %x\n", __FUNCTION__, ctx->_NeedEyeCoords,
2008 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL]);
2009
2010 if (ctx->_NeedEyeCoords)
2011 tmp = ctx->Transform.RescaleNormals;
2012 else
2013 tmp = !ctx->Transform.RescaleNormals;
2014
2015 if ( tmp ) {
2016 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] |= RADEON_RESCALE_NORMALS;
2017 } else {
2018 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL] &= ~RADEON_RESCALE_NORMALS;
2019 }
2020
2021 if (RADEON_DEBUG & DEBUG_STATE)
2022 fprintf(stderr, "%s %d AFTER %x\n", __FUNCTION__, ctx->_NeedEyeCoords,
2023 rmesa->hw.tcl.cmd[TCL_LIGHT_MODEL_CTL]);
2024 }
2025
2026 /* =============================================================
2027 * Deferred state management - matrices, textures, other?
2028 */
2029
2030
2031
2032
2033 static void upload_matrix( radeonContextPtr rmesa, GLfloat *src, int idx )
2034 {
2035 float *dest = ((float *)RADEON_DB_STATE( mat[idx] ))+MAT_ELT_0;
2036 int i;
2037
2038
2039 for (i = 0 ; i < 4 ; i++) {
2040 *dest++ = src[i];
2041 *dest++ = src[i+4];
2042 *dest++ = src[i+8];
2043 *dest++ = src[i+12];
2044 }
2045
2046 RADEON_DB_STATECHANGE( rmesa, &rmesa->hw.mat[idx] );
2047 }
2048
2049 static void upload_matrix_t( radeonContextPtr rmesa, GLfloat *src, int idx )
2050 {
2051 float *dest = ((float *)RADEON_DB_STATE( mat[idx] ))+MAT_ELT_0;
2052 memcpy(dest, src, 16*sizeof(float));
2053 RADEON_DB_STATECHANGE( rmesa, &rmesa->hw.mat[idx] );
2054 }
2055
2056
2057 static void update_texturematrix( GLcontext *ctx )
2058 {
2059 radeonContextPtr rmesa = RADEON_CONTEXT( ctx );
2060 GLuint tpc = rmesa->hw.tcl.cmd[TCL_TEXTURE_PROC_CTL];
2061 GLuint vs = rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL];
2062 int unit;
2063
2064 rmesa->TexMatEnabled = 0;
2065
2066 for (unit = 0 ; unit < 2; unit++) {
2067 if (!ctx->Texture.Unit[unit]._ReallyEnabled) {
2068 }
2069 else if (ctx->TextureMatrixStack[unit].Top->type != MATRIX_IDENTITY) {
2070 GLuint inputshift = RADEON_TEXGEN_0_INPUT_SHIFT + unit*4;
2071
2072 rmesa->TexMatEnabled |= (RADEON_TEXGEN_TEXMAT_0_ENABLE|
2073 RADEON_TEXMAT_0_ENABLE) << unit;
2074
2075 if (rmesa->TexGenEnabled & (RADEON_TEXMAT_0_ENABLE << unit)) {
2076 /* Need to preconcatenate any active texgen
2077 * obj/eyeplane matrices:
2078 */
2079 _math_matrix_mul_matrix( &rmesa->tmpmat,
2080 &rmesa->TexGenMatrix[unit],
2081 ctx->TextureMatrixStack[unit].Top );
2082 upload_matrix( rmesa, rmesa->tmpmat.m, TEXMAT_0+unit );
2083 }
2084 else {
2085 rmesa->TexMatEnabled |=
2086 (RADEON_TEXGEN_INPUT_TEXCOORD_0+unit) << inputshift;
2087 upload_matrix( rmesa, ctx->TextureMatrixStack[unit].Top->m,
2088 TEXMAT_0+unit );
2089 }
2090 }
2091 else if (rmesa->TexGenEnabled & (RADEON_TEXMAT_0_ENABLE << unit)) {
2092 upload_matrix( rmesa, rmesa->TexGenMatrix[unit].m,
2093 TEXMAT_0+unit );
2094 }
2095 }
2096
2097
2098 tpc = (rmesa->TexMatEnabled | rmesa->TexGenEnabled);
2099
2100 vs &= ~((0xf << RADEON_TCL_TEX_0_OUTPUT_SHIFT) |
2101 (0xf << RADEON_TCL_TEX_1_OUTPUT_SHIFT));
2102
2103 if (tpc & RADEON_TEXGEN_TEXMAT_0_ENABLE)
2104 vs |= RADEON_TCL_TEX_COMPUTED_TEX_0 << RADEON_TCL_TEX_0_OUTPUT_SHIFT;
2105 else
2106 vs |= RADEON_TCL_TEX_INPUT_TEX_0 << RADEON_TCL_TEX_0_OUTPUT_SHIFT;
2107
2108 if (tpc & RADEON_TEXGEN_TEXMAT_1_ENABLE)
2109 vs |= RADEON_TCL_TEX_COMPUTED_TEX_1 << RADEON_TCL_TEX_1_OUTPUT_SHIFT;
2110 else
2111 vs |= RADEON_TCL_TEX_INPUT_TEX_1 << RADEON_TCL_TEX_1_OUTPUT_SHIFT;
2112
2113 if (tpc != rmesa->hw.tcl.cmd[TCL_TEXTURE_PROC_CTL] ||
2114 vs != rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL]) {
2115
2116 RADEON_STATECHANGE(rmesa, tcl);
2117 rmesa->hw.tcl.cmd[TCL_TEXTURE_PROC_CTL] = tpc;
2118 rmesa->hw.tcl.cmd[TCL_OUTPUT_VTXSEL] = vs;
2119 }
2120 }
2121
2122
2123
2124 void radeonValidateState( GLcontext *ctx )
2125 {
2126 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
2127 GLuint new_state = rmesa->NewGLState;
2128
2129 if (new_state & _NEW_TEXTURE) {
2130 radeonUpdateTextureState( ctx );
2131 new_state |= rmesa->NewGLState; /* may add TEXTURE_MATRIX */
2132 }
2133
2134 /* Need an event driven matrix update?
2135 */
2136 if (new_state & (_NEW_MODELVIEW|_NEW_PROJECTION))
2137 upload_matrix( rmesa, ctx->_ModelProjectMatrix.m, MODEL_PROJ );
2138
2139 /* Need these for lighting (shouldn't upload otherwise)
2140 */
2141 if (new_state & (_NEW_MODELVIEW)) {
2142 upload_matrix( rmesa, ctx->ModelviewMatrixStack.Top->m, MODEL );
2143 upload_matrix_t( rmesa, ctx->ModelviewMatrixStack.Top->inv, MODEL_IT );
2144 }
2145
2146 /* Does this need to be triggered on eg. modelview for
2147 * texgen-derived objplane/eyeplane matrices?
2148 */
2149 if (new_state & _NEW_TEXTURE_MATRIX) {
2150 update_texturematrix( ctx );
2151 }
2152
2153 if (new_state & (_NEW_LIGHT|_NEW_MODELVIEW|_MESA_NEW_NEED_EYE_COORDS)) {
2154 update_light( ctx );
2155 }
2156
2157 /* emit all active clip planes if projection matrix changes.
2158 */
2159 if (new_state & (_NEW_PROJECTION)) {
2160 if (ctx->Transform.ClipPlanesEnabled)
2161 radeonUpdateClipPlanes( ctx );
2162 }
2163
2164
2165 rmesa->NewGLState = 0;
2166 }
2167
2168
2169 static void radeonInvalidateState( GLcontext *ctx, GLuint new_state )
2170 {
2171 _swrast_InvalidateState( ctx, new_state );
2172 _swsetup_InvalidateState( ctx, new_state );
2173 _ac_InvalidateState( ctx, new_state );
2174 _tnl_InvalidateState( ctx, new_state );
2175 _ae_invalidate_state( ctx, new_state );
2176 RADEON_CONTEXT(ctx)->NewGLState |= new_state;
2177 radeonVtxfmtInvalidate( ctx );
2178 }
2179
2180
2181 /* A hack. Need a faster way to find this out.
2182 */
2183 static GLboolean check_material( GLcontext *ctx )
2184 {
2185 TNLcontext *tnl = TNL_CONTEXT(ctx);
2186 GLint i;
2187
2188 for (i = _TNL_ATTRIB_MAT_FRONT_AMBIENT;
2189 i < _TNL_ATTRIB_MAT_BACK_INDEXES;
2190 i++)
2191 if (tnl->vb.AttribPtr[i] &&
2192 tnl->vb.AttribPtr[i]->stride)
2193 return GL_TRUE;
2194
2195 return GL_FALSE;
2196 }
2197
2198
2199 static void radeonWrapRunPipeline( GLcontext *ctx )
2200 {
2201 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
2202 GLboolean has_material;
2203
2204 if (0)
2205 fprintf(stderr, "%s, newstate: %x\n", __FUNCTION__, rmesa->NewGLState);
2206
2207 /* Validate state:
2208 */
2209 if (rmesa->NewGLState)
2210 radeonValidateState( ctx );
2211
2212 has_material = (ctx->Light.Enabled && check_material( ctx ));
2213
2214 if (has_material) {
2215 TCL_FALLBACK( ctx, RADEON_TCL_FALLBACK_MATERIAL, GL_TRUE );
2216 }
2217
2218 /* Run the pipeline.
2219 */
2220 _tnl_run_pipeline( ctx );
2221
2222 if (has_material) {
2223 TCL_FALLBACK( ctx, RADEON_TCL_FALLBACK_MATERIAL, GL_FALSE );
2224 }
2225 }
2226
2227
2228 /* Initialize the driver's state functions.
2229 */
2230 void radeonInitStateFuncs( GLcontext *ctx )
2231 {
2232 ctx->Driver.UpdateState = radeonInvalidateState;
2233 ctx->Driver.LightingSpaceChange = radeonLightingSpaceChange;
2234
2235 ctx->Driver.DrawBuffer = radeonDrawBuffer;
2236 ctx->Driver.ReadBuffer = radeonReadBuffer;
2237
2238 ctx->Driver.AlphaFunc = radeonAlphaFunc;
2239 ctx->Driver.BlendEquationSeparate = radeonBlendEquationSeparate;
2240 ctx->Driver.BlendFuncSeparate = radeonBlendFuncSeparate;
2241 ctx->Driver.ClearColor = radeonClearColor;
2242 ctx->Driver.ClearDepth = radeonClearDepth;
2243 ctx->Driver.ClearIndex = NULL;
2244 ctx->Driver.ClearStencil = radeonClearStencil;
2245 ctx->Driver.ClipPlane = radeonClipPlane;
2246 ctx->Driver.ColorMask = radeonColorMask;
2247 ctx->Driver.CullFace = radeonCullFace;
2248 ctx->Driver.DepthFunc = radeonDepthFunc;
2249 ctx->Driver.DepthMask = radeonDepthMask;
2250 ctx->Driver.DepthRange = radeonDepthRange;
2251 ctx->Driver.Enable = radeonEnable;
2252 ctx->Driver.Fogfv = radeonFogfv;
2253 ctx->Driver.FrontFace = radeonFrontFace;
2254 ctx->Driver.Hint = NULL;
2255 ctx->Driver.IndexMask = NULL;
2256 ctx->Driver.LightModelfv = radeonLightModelfv;
2257 ctx->Driver.Lightfv = radeonLightfv;
2258 ctx->Driver.LineStipple = radeonLineStipple;
2259 ctx->Driver.LineWidth = radeonLineWidth;
2260 ctx->Driver.LogicOpcode = radeonLogicOpCode;
2261 ctx->Driver.PolygonMode = radeonPolygonMode;
2262
2263 if (RADEON_CONTEXT(ctx)->dri.drmMinor > 1)
2264 ctx->Driver.PolygonOffset = radeonPolygonOffset;
2265
2266 ctx->Driver.PolygonStipple = radeonPolygonStipple;
2267 ctx->Driver.RenderMode = radeonRenderMode;
2268 ctx->Driver.Scissor = radeonScissor;
2269 ctx->Driver.ShadeModel = radeonShadeModel;
2270 ctx->Driver.StencilFunc = radeonStencilFunc;
2271 ctx->Driver.StencilMask = radeonStencilMask;
2272 ctx->Driver.StencilOp = radeonStencilOp;
2273 ctx->Driver.Viewport = radeonViewport;
2274
2275 /* Pixel path fallbacks
2276 */
2277 ctx->Driver.Accum = _swrast_Accum;
2278 ctx->Driver.Bitmap = _swrast_Bitmap;
2279 ctx->Driver.CopyPixels = _swrast_CopyPixels;
2280 ctx->Driver.DrawPixels = _swrast_DrawPixels;
2281 ctx->Driver.ReadPixels = _swrast_ReadPixels;
2282
2283 /* Swrast hooks for imaging extensions:
2284 */
2285 ctx->Driver.CopyColorTable = _swrast_CopyColorTable;
2286 ctx->Driver.CopyColorSubTable = _swrast_CopyColorSubTable;
2287 ctx->Driver.CopyConvolutionFilter1D = _swrast_CopyConvolutionFilter1D;
2288 ctx->Driver.CopyConvolutionFilter2D = _swrast_CopyConvolutionFilter2D;
2289
2290 TNL_CONTEXT(ctx)->Driver.NotifyMaterialChange = radeonUpdateMaterial;
2291 TNL_CONTEXT(ctx)->Driver.RunPipeline = radeonWrapRunPipeline;
2292 }