radeon: get ctx right in copybuffer
[mesa.git] / src / mesa / main / ffvertex_prog.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /**
29 * \file ffvertex_prog.
30 *
31 * Create a vertex program to execute the current fixed function T&L pipeline.
32 * \author Keith Whitwell
33 */
34
35
36 #include "main/glheader.h"
37 #include "main/mtypes.h"
38 #include "main/macros.h"
39 #include "main/enums.h"
40 #include "main/ffvertex_prog.h"
41 #include "shader/program.h"
42 #include "shader/prog_cache.h"
43 #include "shader/prog_instruction.h"
44 #include "shader/prog_parameter.h"
45 #include "shader/prog_print.h"
46 #include "shader/prog_statevars.h"
47
48
49 struct state_key {
50 unsigned light_global_enabled:1;
51 unsigned light_local_viewer:1;
52 unsigned light_twoside:1;
53 unsigned light_color_material:1;
54 unsigned light_color_material_mask:12;
55 unsigned light_material_mask:12;
56 unsigned material_shininess_is_zero:1;
57
58 unsigned need_eye_coords:1;
59 unsigned normalize:1;
60 unsigned rescale_normals:1;
61 unsigned fog_source_is_depth:1;
62 unsigned tnl_do_vertex_fog:1;
63 unsigned separate_specular:1;
64 unsigned fog_mode:2;
65 unsigned point_attenuated:1;
66 unsigned point_array:1;
67 unsigned texture_enabled_global:1;
68 unsigned fragprog_inputs_read:12;
69
70 struct {
71 unsigned light_enabled:1;
72 unsigned light_eyepos3_is_zero:1;
73 unsigned light_spotcutoff_is_180:1;
74 unsigned light_attenuated:1;
75 unsigned texunit_really_enabled:1;
76 unsigned texmat_enabled:1;
77 unsigned texgen_enabled:4;
78 unsigned texgen_mode0:4;
79 unsigned texgen_mode1:4;
80 unsigned texgen_mode2:4;
81 unsigned texgen_mode3:4;
82 } unit[8];
83 };
84
85
86
87 #define FOG_NONE 0
88 #define FOG_LINEAR 1
89 #define FOG_EXP 2
90 #define FOG_EXP2 3
91
92 static GLuint translate_fog_mode( GLenum mode )
93 {
94 switch (mode) {
95 case GL_LINEAR: return FOG_LINEAR;
96 case GL_EXP: return FOG_EXP;
97 case GL_EXP2: return FOG_EXP2;
98 default: return FOG_NONE;
99 }
100 }
101
102 #define TXG_NONE 0
103 #define TXG_OBJ_LINEAR 1
104 #define TXG_EYE_LINEAR 2
105 #define TXG_SPHERE_MAP 3
106 #define TXG_REFLECTION_MAP 4
107 #define TXG_NORMAL_MAP 5
108
109 static GLuint translate_texgen( GLboolean enabled, GLenum mode )
110 {
111 if (!enabled)
112 return TXG_NONE;
113
114 switch (mode) {
115 case GL_OBJECT_LINEAR: return TXG_OBJ_LINEAR;
116 case GL_EYE_LINEAR: return TXG_EYE_LINEAR;
117 case GL_SPHERE_MAP: return TXG_SPHERE_MAP;
118 case GL_REFLECTION_MAP_NV: return TXG_REFLECTION_MAP;
119 case GL_NORMAL_MAP_NV: return TXG_NORMAL_MAP;
120 default: return TXG_NONE;
121 }
122 }
123
124
125 /**
126 * Returns bitmask of flags indicating which materials are set per-vertex
127 * in the current VB.
128 * XXX get these from the VBO...
129 */
130 static GLbitfield
131 tnl_get_per_vertex_materials(GLcontext *ctx)
132 {
133 GLbitfield mask = 0x0;
134 #if 0
135 TNLcontext *tnl = TNL_CONTEXT(ctx);
136 struct vertex_buffer *VB = &tnl->vb;
137 GLuint i;
138
139 for (i = _TNL_FIRST_MAT; i <= _TNL_LAST_MAT; i++)
140 if (VB->AttribPtr[i] && VB->AttribPtr[i]->stride)
141 mask |= 1 << (i - _TNL_FIRST_MAT);
142 #endif
143 return mask;
144 }
145
146 /**
147 * Should fog be computed per-vertex?
148 */
149 static GLboolean
150 tnl_get_per_vertex_fog(GLcontext *ctx)
151 {
152 #if 0
153 TNLcontext *tnl = TNL_CONTEXT(ctx);
154 return tnl->_DoVertexFog;
155 #else
156 return GL_FALSE;
157 #endif
158 }
159
160 static GLboolean check_active_shininess( GLcontext *ctx,
161 const struct state_key *key,
162 GLuint side )
163 {
164 GLuint bit = 1 << (MAT_ATTRIB_FRONT_SHININESS + side);
165
166 if (key->light_color_material_mask & bit)
167 return GL_TRUE;
168
169 if (key->light_material_mask & bit)
170 return GL_TRUE;
171
172 if (ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_SHININESS + side][0] != 0.0F)
173 return GL_TRUE;
174
175 return GL_FALSE;
176 }
177
178
179
180
181 static void make_state_key( GLcontext *ctx, struct state_key *key )
182 {
183 const struct gl_fragment_program *fp;
184 GLuint i;
185
186 memset(key, 0, sizeof(struct state_key));
187 fp = ctx->FragmentProgram._Current;
188
189 /* This now relies on texenvprogram.c being active:
190 */
191 assert(fp);
192
193 key->need_eye_coords = ctx->_NeedEyeCoords;
194
195 key->fragprog_inputs_read = fp->Base.InputsRead;
196
197 if (ctx->RenderMode == GL_FEEDBACK) {
198 /* make sure the vertprog emits color and tex0 */
199 key->fragprog_inputs_read |= (FRAG_BIT_COL0 | FRAG_BIT_TEX0);
200 }
201
202 key->separate_specular = (ctx->Light.Model.ColorControl ==
203 GL_SEPARATE_SPECULAR_COLOR);
204
205 if (ctx->Light.Enabled) {
206 key->light_global_enabled = 1;
207
208 if (ctx->Light.Model.LocalViewer)
209 key->light_local_viewer = 1;
210
211 if (ctx->Light.Model.TwoSide)
212 key->light_twoside = 1;
213
214 if (ctx->Light.ColorMaterialEnabled) {
215 key->light_color_material = 1;
216 key->light_color_material_mask = ctx->Light.ColorMaterialBitmask;
217 }
218
219 key->light_material_mask = tnl_get_per_vertex_materials(ctx);
220
221 for (i = 0; i < MAX_LIGHTS; i++) {
222 struct gl_light *light = &ctx->Light.Light[i];
223
224 if (light->Enabled) {
225 key->unit[i].light_enabled = 1;
226
227 if (light->EyePosition[3] == 0.0)
228 key->unit[i].light_eyepos3_is_zero = 1;
229
230 if (light->SpotCutoff == 180.0)
231 key->unit[i].light_spotcutoff_is_180 = 1;
232
233 if (light->ConstantAttenuation != 1.0 ||
234 light->LinearAttenuation != 0.0 ||
235 light->QuadraticAttenuation != 0.0)
236 key->unit[i].light_attenuated = 1;
237 }
238 }
239
240 if (check_active_shininess(ctx, key, 0)) {
241 key->material_shininess_is_zero = 0;
242 }
243 else if (key->light_twoside &&
244 check_active_shininess(ctx, key, 1)) {
245 key->material_shininess_is_zero = 0;
246 }
247 else {
248 key->material_shininess_is_zero = 1;
249 }
250 }
251
252 if (ctx->Transform.Normalize)
253 key->normalize = 1;
254
255 if (ctx->Transform.RescaleNormals)
256 key->rescale_normals = 1;
257
258 key->fog_mode = translate_fog_mode(fp->FogOption);
259
260 if (ctx->Fog.FogCoordinateSource == GL_FRAGMENT_DEPTH_EXT)
261 key->fog_source_is_depth = 1;
262
263 key->tnl_do_vertex_fog = tnl_get_per_vertex_fog(ctx);
264
265 if (ctx->Point._Attenuated)
266 key->point_attenuated = 1;
267
268 #if FEATURE_point_size_array
269 if (ctx->Array.ArrayObj->PointSize.Enabled)
270 key->point_array = 1;
271 #endif
272
273 if (ctx->Texture._TexGenEnabled ||
274 ctx->Texture._TexMatEnabled ||
275 ctx->Texture._EnabledUnits)
276 key->texture_enabled_global = 1;
277
278 for (i = 0; i < MAX_TEXTURE_UNITS; i++) {
279 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
280
281 if (texUnit->_ReallyEnabled)
282 key->unit[i].texunit_really_enabled = 1;
283
284 if (ctx->Texture._TexMatEnabled & ENABLE_TEXMAT(i))
285 key->unit[i].texmat_enabled = 1;
286
287 if (texUnit->TexGenEnabled) {
288 key->unit[i].texgen_enabled = 1;
289
290 key->unit[i].texgen_mode0 =
291 translate_texgen( texUnit->TexGenEnabled & (1<<0),
292 texUnit->GenModeS );
293 key->unit[i].texgen_mode1 =
294 translate_texgen( texUnit->TexGenEnabled & (1<<1),
295 texUnit->GenModeT );
296 key->unit[i].texgen_mode2 =
297 translate_texgen( texUnit->TexGenEnabled & (1<<2),
298 texUnit->GenModeR );
299 key->unit[i].texgen_mode3 =
300 translate_texgen( texUnit->TexGenEnabled & (1<<3),
301 texUnit->GenModeQ );
302 }
303 }
304 }
305
306
307
308 /* Very useful debugging tool - produces annotated listing of
309 * generated program with line/function references for each
310 * instruction back into this file:
311 */
312 #define DISASSEM 0
313
314 /* Should be tunable by the driver - do we want to do matrix
315 * multiplications with DP4's or with MUL/MAD's? SSE works better
316 * with the latter, drivers may differ.
317 */
318 #define PREFER_DP4 0
319
320
321 /* Use uregs to represent registers internally, translate to Mesa's
322 * expected formats on emit.
323 *
324 * NOTE: These are passed by value extensively in this file rather
325 * than as usual by pointer reference. If this disturbs you, try
326 * remembering they are just 32bits in size.
327 *
328 * GCC is smart enough to deal with these dword-sized structures in
329 * much the same way as if I had defined them as dwords and was using
330 * macros to access and set the fields. This is much nicer and easier
331 * to evolve.
332 */
333 struct ureg {
334 GLuint file:4;
335 GLint idx:9; /* relative addressing may be negative */
336 /* sizeof(idx) should == sizeof(prog_src_reg::Index) */
337 GLuint negate:1;
338 GLuint swz:12;
339 GLuint pad:6;
340 };
341
342
343 struct tnl_program {
344 const struct state_key *state;
345 struct gl_vertex_program *program;
346 GLint max_inst; /** number of instructions allocated for program */
347
348 GLuint temp_in_use;
349 GLuint temp_reserved;
350
351 struct ureg eye_position;
352 struct ureg eye_position_z;
353 struct ureg eye_position_normalized;
354 struct ureg transformed_normal;
355 struct ureg identity;
356
357 GLuint materials;
358 GLuint color_materials;
359 };
360
361
362 static const struct ureg undef = {
363 PROGRAM_UNDEFINED,
364 0,
365 0,
366 0,
367 0
368 };
369
370 /* Local shorthand:
371 */
372 #define X SWIZZLE_X
373 #define Y SWIZZLE_Y
374 #define Z SWIZZLE_Z
375 #define W SWIZZLE_W
376
377
378 /* Construct a ureg:
379 */
380 static struct ureg make_ureg(GLuint file, GLint idx)
381 {
382 struct ureg reg;
383 reg.file = file;
384 reg.idx = idx;
385 reg.negate = 0;
386 reg.swz = SWIZZLE_NOOP;
387 reg.pad = 0;
388 return reg;
389 }
390
391
392
393 static struct ureg negate( struct ureg reg )
394 {
395 reg.negate ^= 1;
396 return reg;
397 }
398
399
400 static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
401 {
402 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
403 GET_SWZ(reg.swz, y),
404 GET_SWZ(reg.swz, z),
405 GET_SWZ(reg.swz, w));
406
407 return reg;
408 }
409
410 static struct ureg swizzle1( struct ureg reg, int x )
411 {
412 return swizzle(reg, x, x, x, x);
413 }
414
415 static struct ureg get_temp( struct tnl_program *p )
416 {
417 int bit = _mesa_ffs( ~p->temp_in_use );
418 if (!bit) {
419 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
420 _mesa_exit(1);
421 }
422
423 if ((GLuint) bit > p->program->Base.NumTemporaries)
424 p->program->Base.NumTemporaries = bit;
425
426 p->temp_in_use |= 1<<(bit-1);
427 return make_ureg(PROGRAM_TEMPORARY, bit-1);
428 }
429
430 static struct ureg reserve_temp( struct tnl_program *p )
431 {
432 struct ureg temp = get_temp( p );
433 p->temp_reserved |= 1<<temp.idx;
434 return temp;
435 }
436
437 static void release_temp( struct tnl_program *p, struct ureg reg )
438 {
439 if (reg.file == PROGRAM_TEMPORARY) {
440 p->temp_in_use &= ~(1<<reg.idx);
441 p->temp_in_use |= p->temp_reserved; /* can't release reserved temps */
442 }
443 }
444
445 static void release_temps( struct tnl_program *p )
446 {
447 p->temp_in_use = p->temp_reserved;
448 }
449
450
451
452 /**
453 * \param input one of VERT_ATTRIB_x tokens.
454 */
455 static struct ureg register_input( struct tnl_program *p, GLuint input )
456 {
457 p->program->Base.InputsRead |= (1<<input);
458 return make_ureg(PROGRAM_INPUT, input);
459 }
460
461 /**
462 * \param input one of VERT_RESULT_x tokens.
463 */
464 static struct ureg register_output( struct tnl_program *p, GLuint output )
465 {
466 p->program->Base.OutputsWritten |= (1<<output);
467 return make_ureg(PROGRAM_OUTPUT, output);
468 }
469
470 static struct ureg register_const4f( struct tnl_program *p,
471 GLfloat s0,
472 GLfloat s1,
473 GLfloat s2,
474 GLfloat s3)
475 {
476 GLfloat values[4];
477 GLint idx;
478 GLuint swizzle;
479 values[0] = s0;
480 values[1] = s1;
481 values[2] = s2;
482 values[3] = s3;
483 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values, 4,
484 &swizzle );
485 ASSERT(swizzle == SWIZZLE_NOOP);
486 return make_ureg(PROGRAM_CONSTANT, idx);
487 }
488
489 #define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
490 #define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
491 #define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
492 #define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
493
494 static GLboolean is_undef( struct ureg reg )
495 {
496 return reg.file == PROGRAM_UNDEFINED;
497 }
498
499 static struct ureg get_identity_param( struct tnl_program *p )
500 {
501 if (is_undef(p->identity))
502 p->identity = register_const4f(p, 0,0,0,1);
503
504 return p->identity;
505 }
506
507 static struct ureg register_param5(struct tnl_program *p,
508 GLint s0,
509 GLint s1,
510 GLint s2,
511 GLint s3,
512 GLint s4)
513 {
514 gl_state_index tokens[STATE_LENGTH];
515 GLint idx;
516 tokens[0] = s0;
517 tokens[1] = s1;
518 tokens[2] = s2;
519 tokens[3] = s3;
520 tokens[4] = s4;
521 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
522 return make_ureg(PROGRAM_STATE_VAR, idx);
523 }
524
525
526 #define register_param1(p,s0) register_param5(p,s0,0,0,0,0)
527 #define register_param2(p,s0,s1) register_param5(p,s0,s1,0,0,0)
528 #define register_param3(p,s0,s1,s2) register_param5(p,s0,s1,s2,0,0)
529 #define register_param4(p,s0,s1,s2,s3) register_param5(p,s0,s1,s2,s3,0)
530
531
532 static void register_matrix_param5( struct tnl_program *p,
533 GLint s0, /* modelview, projection, etc */
534 GLint s1, /* texture matrix number */
535 GLint s2, /* first row */
536 GLint s3, /* last row */
537 GLint s4, /* inverse, transpose, etc */
538 struct ureg *matrix )
539 {
540 GLint i;
541
542 /* This is a bit sad as the support is there to pull the whole
543 * matrix out in one go:
544 */
545 for (i = 0; i <= s3 - s2; i++)
546 matrix[i] = register_param5( p, s0, s1, i, i, s4 );
547 }
548
549
550 static void emit_arg( struct prog_src_register *src,
551 struct ureg reg )
552 {
553 src->File = reg.file;
554 src->Index = reg.idx;
555 src->Swizzle = reg.swz;
556 src->NegateBase = reg.negate ? NEGATE_XYZW : 0;
557 src->Abs = 0;
558 src->NegateAbs = 0;
559 src->RelAddr = 0;
560 /* Check that bitfield sizes aren't exceeded */
561 ASSERT(src->Index == reg.idx);
562 }
563
564 static void emit_dst( struct prog_dst_register *dst,
565 struct ureg reg, GLuint mask )
566 {
567 dst->File = reg.file;
568 dst->Index = reg.idx;
569 /* allow zero as a shorthand for xyzw */
570 dst->WriteMask = mask ? mask : WRITEMASK_XYZW;
571 dst->CondMask = COND_TR; /* always pass cond test */
572 dst->CondSwizzle = SWIZZLE_NOOP;
573 dst->CondSrc = 0;
574 dst->pad = 0;
575 /* Check that bitfield sizes aren't exceeded */
576 ASSERT(dst->Index == reg.idx);
577 }
578
579 static void debug_insn( struct prog_instruction *inst, const char *fn,
580 GLuint line )
581 {
582 if (DISASSEM) {
583 static const char *last_fn;
584
585 if (fn != last_fn) {
586 last_fn = fn;
587 _mesa_printf("%s:\n", fn);
588 }
589
590 _mesa_printf("%d:\t", line);
591 _mesa_print_instruction(inst);
592 }
593 }
594
595
596 static void emit_op3fn(struct tnl_program *p,
597 enum prog_opcode op,
598 struct ureg dest,
599 GLuint mask,
600 struct ureg src0,
601 struct ureg src1,
602 struct ureg src2,
603 const char *fn,
604 GLuint line)
605 {
606 GLuint nr;
607 struct prog_instruction *inst;
608
609 assert((GLint) p->program->Base.NumInstructions <= p->max_inst);
610
611 if (p->program->Base.NumInstructions == p->max_inst) {
612 /* need to extend the program's instruction array */
613 struct prog_instruction *newInst;
614
615 /* double the size */
616 p->max_inst *= 2;
617
618 newInst = _mesa_alloc_instructions(p->max_inst);
619 if (!newInst) {
620 _mesa_error(NULL, GL_OUT_OF_MEMORY, "vertex program build");
621 return;
622 }
623
624 _mesa_copy_instructions(newInst,
625 p->program->Base.Instructions,
626 p->program->Base.NumInstructions);
627
628 _mesa_free_instructions(p->program->Base.Instructions,
629 p->program->Base.NumInstructions);
630
631 p->program->Base.Instructions = newInst;
632 }
633
634 nr = p->program->Base.NumInstructions++;
635
636 inst = &p->program->Base.Instructions[nr];
637 inst->Opcode = (enum prog_opcode) op;
638 inst->StringPos = 0;
639 inst->Data = 0;
640
641 emit_arg( &inst->SrcReg[0], src0 );
642 emit_arg( &inst->SrcReg[1], src1 );
643 emit_arg( &inst->SrcReg[2], src2 );
644
645 emit_dst( &inst->DstReg, dest, mask );
646
647 debug_insn(inst, fn, line);
648 }
649
650
651 #define emit_op3(p, op, dst, mask, src0, src1, src2) \
652 emit_op3fn(p, op, dst, mask, src0, src1, src2, __FUNCTION__, __LINE__)
653
654 #define emit_op2(p, op, dst, mask, src0, src1) \
655 emit_op3fn(p, op, dst, mask, src0, src1, undef, __FUNCTION__, __LINE__)
656
657 #define emit_op1(p, op, dst, mask, src0) \
658 emit_op3fn(p, op, dst, mask, src0, undef, undef, __FUNCTION__, __LINE__)
659
660
661 static struct ureg make_temp( struct tnl_program *p, struct ureg reg )
662 {
663 if (reg.file == PROGRAM_TEMPORARY &&
664 !(p->temp_reserved & (1<<reg.idx)))
665 return reg;
666 else {
667 struct ureg temp = get_temp(p);
668 emit_op1(p, OPCODE_MOV, temp, 0, reg);
669 return temp;
670 }
671 }
672
673
674 /* Currently no tracking performed of input/output/register size or
675 * active elements. Could be used to reduce these operations, as
676 * could the matrix type.
677 */
678 static void emit_matrix_transform_vec4( struct tnl_program *p,
679 struct ureg dest,
680 const struct ureg *mat,
681 struct ureg src)
682 {
683 emit_op2(p, OPCODE_DP4, dest, WRITEMASK_X, src, mat[0]);
684 emit_op2(p, OPCODE_DP4, dest, WRITEMASK_Y, src, mat[1]);
685 emit_op2(p, OPCODE_DP4, dest, WRITEMASK_Z, src, mat[2]);
686 emit_op2(p, OPCODE_DP4, dest, WRITEMASK_W, src, mat[3]);
687 }
688
689 /* This version is much easier to implement if writemasks are not
690 * supported natively on the target or (like SSE), the target doesn't
691 * have a clean/obvious dotproduct implementation.
692 */
693 static void emit_transpose_matrix_transform_vec4( struct tnl_program *p,
694 struct ureg dest,
695 const struct ureg *mat,
696 struct ureg src)
697 {
698 struct ureg tmp;
699
700 if (dest.file != PROGRAM_TEMPORARY)
701 tmp = get_temp(p);
702 else
703 tmp = dest;
704
705 emit_op2(p, OPCODE_MUL, tmp, 0, swizzle1(src,X), mat[0]);
706 emit_op3(p, OPCODE_MAD, tmp, 0, swizzle1(src,Y), mat[1], tmp);
707 emit_op3(p, OPCODE_MAD, tmp, 0, swizzle1(src,Z), mat[2], tmp);
708 emit_op3(p, OPCODE_MAD, dest, 0, swizzle1(src,W), mat[3], tmp);
709
710 if (dest.file != PROGRAM_TEMPORARY)
711 release_temp(p, tmp);
712 }
713
714 static void emit_matrix_transform_vec3( struct tnl_program *p,
715 struct ureg dest,
716 const struct ureg *mat,
717 struct ureg src)
718 {
719 emit_op2(p, OPCODE_DP3, dest, WRITEMASK_X, src, mat[0]);
720 emit_op2(p, OPCODE_DP3, dest, WRITEMASK_Y, src, mat[1]);
721 emit_op2(p, OPCODE_DP3, dest, WRITEMASK_Z, src, mat[2]);
722 }
723
724
725 static void emit_normalize_vec3( struct tnl_program *p,
726 struct ureg dest,
727 struct ureg src )
728 {
729 #if 0
730 /* XXX use this when drivers are ready for NRM3 */
731 emit_op1(p, OPCODE_NRM3, dest, WRITEMASK_XYZ, src);
732 #else
733 struct ureg tmp = get_temp(p);
734 emit_op2(p, OPCODE_DP3, tmp, WRITEMASK_X, src, src);
735 emit_op1(p, OPCODE_RSQ, tmp, WRITEMASK_X, tmp);
736 emit_op2(p, OPCODE_MUL, dest, 0, src, swizzle1(tmp, X));
737 release_temp(p, tmp);
738 #endif
739 }
740
741 static void emit_passthrough( struct tnl_program *p,
742 GLuint input,
743 GLuint output )
744 {
745 struct ureg out = register_output(p, output);
746 emit_op1(p, OPCODE_MOV, out, 0, register_input(p, input));
747 }
748
749 static struct ureg get_eye_position( struct tnl_program *p )
750 {
751 if (is_undef(p->eye_position)) {
752 struct ureg pos = register_input( p, VERT_ATTRIB_POS );
753 struct ureg modelview[4];
754
755 p->eye_position = reserve_temp(p);
756
757 if (PREFER_DP4) {
758 register_matrix_param5( p, STATE_MODELVIEW_MATRIX, 0, 0, 3,
759 0, modelview );
760
761 emit_matrix_transform_vec4(p, p->eye_position, modelview, pos);
762 }
763 else {
764 register_matrix_param5( p, STATE_MODELVIEW_MATRIX, 0, 0, 3,
765 STATE_MATRIX_TRANSPOSE, modelview );
766
767 emit_transpose_matrix_transform_vec4(p, p->eye_position, modelview, pos);
768 }
769 }
770
771 return p->eye_position;
772 }
773
774
775 static struct ureg get_eye_position_z( struct tnl_program *p )
776 {
777 if (!is_undef(p->eye_position))
778 return swizzle1(p->eye_position, Z);
779
780 if (is_undef(p->eye_position_z)) {
781 struct ureg pos = register_input( p, VERT_ATTRIB_POS );
782 struct ureg modelview[4];
783
784 p->eye_position_z = reserve_temp(p);
785
786 register_matrix_param5( p, STATE_MODELVIEW_MATRIX, 0, 0, 3,
787 0, modelview );
788
789 emit_op2(p, OPCODE_DP4, p->eye_position_z, 0, pos, modelview[2]);
790 }
791
792 return p->eye_position_z;
793 }
794
795
796
797 static struct ureg get_eye_position_normalized( struct tnl_program *p )
798 {
799 if (is_undef(p->eye_position_normalized)) {
800 struct ureg eye = get_eye_position(p);
801 p->eye_position_normalized = reserve_temp(p);
802 emit_normalize_vec3(p, p->eye_position_normalized, eye);
803 }
804
805 return p->eye_position_normalized;
806 }
807
808
809 static struct ureg get_transformed_normal( struct tnl_program *p )
810 {
811 if (is_undef(p->transformed_normal) &&
812 !p->state->need_eye_coords &&
813 !p->state->normalize &&
814 !(p->state->need_eye_coords == p->state->rescale_normals))
815 {
816 p->transformed_normal = register_input(p, VERT_ATTRIB_NORMAL );
817 }
818 else if (is_undef(p->transformed_normal))
819 {
820 struct ureg normal = register_input(p, VERT_ATTRIB_NORMAL );
821 struct ureg mvinv[3];
822 struct ureg transformed_normal = reserve_temp(p);
823
824 if (p->state->need_eye_coords) {
825 register_matrix_param5( p, STATE_MODELVIEW_MATRIX, 0, 0, 2,
826 STATE_MATRIX_INVTRANS, mvinv );
827
828 /* Transform to eye space:
829 */
830 emit_matrix_transform_vec3( p, transformed_normal, mvinv, normal );
831 normal = transformed_normal;
832 }
833
834 /* Normalize/Rescale:
835 */
836 if (p->state->normalize) {
837 emit_normalize_vec3( p, transformed_normal, normal );
838 normal = transformed_normal;
839 }
840 else if (p->state->need_eye_coords == p->state->rescale_normals) {
841 /* This is already adjusted for eye/non-eye rendering:
842 */
843 struct ureg rescale = register_param2(p, STATE_INTERNAL,
844 STATE_NORMAL_SCALE);
845
846 emit_op2( p, OPCODE_MUL, transformed_normal, 0, normal, rescale );
847 normal = transformed_normal;
848 }
849
850 assert(normal.file == PROGRAM_TEMPORARY);
851 p->transformed_normal = normal;
852 }
853
854 return p->transformed_normal;
855 }
856
857
858
859 static void build_hpos( struct tnl_program *p )
860 {
861 struct ureg pos = register_input( p, VERT_ATTRIB_POS );
862 struct ureg hpos = register_output( p, VERT_RESULT_HPOS );
863 struct ureg mvp[4];
864
865 if (PREFER_DP4) {
866 register_matrix_param5( p, STATE_MVP_MATRIX, 0, 0, 3,
867 0, mvp );
868 emit_matrix_transform_vec4( p, hpos, mvp, pos );
869 }
870 else {
871 register_matrix_param5( p, STATE_MVP_MATRIX, 0, 0, 3,
872 STATE_MATRIX_TRANSPOSE, mvp );
873 emit_transpose_matrix_transform_vec4( p, hpos, mvp, pos );
874 }
875 }
876
877
878 static GLuint material_attrib( GLuint side, GLuint property )
879 {
880 return ((property - STATE_AMBIENT) * 2 +
881 side);
882 }
883
884 /* Get a bitmask of which material values vary on a per-vertex basis.
885 */
886 static void set_material_flags( struct tnl_program *p )
887 {
888 p->color_materials = 0;
889 p->materials = 0;
890
891 if (p->state->light_color_material) {
892 p->materials =
893 p->color_materials = p->state->light_color_material_mask;
894 }
895
896 p->materials |= p->state->light_material_mask;
897 }
898
899
900 /* XXX temporary!!! */
901 #define _TNL_ATTRIB_MAT_FRONT_AMBIENT 32
902
903 static struct ureg get_material( struct tnl_program *p, GLuint side,
904 GLuint property )
905 {
906 GLuint attrib = material_attrib(side, property);
907
908 if (p->color_materials & (1<<attrib))
909 return register_input(p, VERT_ATTRIB_COLOR0);
910 else if (p->materials & (1<<attrib))
911 return register_input( p, attrib + _TNL_ATTRIB_MAT_FRONT_AMBIENT );
912 else
913 return register_param3( p, STATE_MATERIAL, side, property );
914 }
915
916 #define SCENE_COLOR_BITS(side) (( MAT_BIT_FRONT_EMISSION | \
917 MAT_BIT_FRONT_AMBIENT | \
918 MAT_BIT_FRONT_DIFFUSE) << (side))
919
920 /* Either return a precalculated constant value or emit code to
921 * calculate these values dynamically in the case where material calls
922 * are present between begin/end pairs.
923 *
924 * Probably want to shift this to the program compilation phase - if
925 * we always emitted the calculation here, a smart compiler could
926 * detect that it was constant (given a certain set of inputs), and
927 * lift it out of the main loop. That way the programs created here
928 * would be independent of the vertex_buffer details.
929 */
930 static struct ureg get_scenecolor( struct tnl_program *p, GLuint side )
931 {
932 if (p->materials & SCENE_COLOR_BITS(side)) {
933 struct ureg lm_ambient = register_param1(p, STATE_LIGHTMODEL_AMBIENT);
934 struct ureg material_emission = get_material(p, side, STATE_EMISSION);
935 struct ureg material_ambient = get_material(p, side, STATE_AMBIENT);
936 struct ureg material_diffuse = get_material(p, side, STATE_DIFFUSE);
937 struct ureg tmp = make_temp(p, material_diffuse);
938 emit_op3(p, OPCODE_MAD, tmp, WRITEMASK_XYZ, lm_ambient,
939 material_ambient, material_emission);
940 return tmp;
941 }
942 else
943 return register_param2( p, STATE_LIGHTMODEL_SCENECOLOR, side );
944 }
945
946
947 static struct ureg get_lightprod( struct tnl_program *p, GLuint light,
948 GLuint side, GLuint property )
949 {
950 GLuint attrib = material_attrib(side, property);
951 if (p->materials & (1<<attrib)) {
952 struct ureg light_value =
953 register_param3(p, STATE_LIGHT, light, property);
954 struct ureg material_value = get_material(p, side, property);
955 struct ureg tmp = get_temp(p);
956 emit_op2(p, OPCODE_MUL, tmp, 0, light_value, material_value);
957 return tmp;
958 }
959 else
960 return register_param4(p, STATE_LIGHTPROD, light, side, property);
961 }
962
963 static struct ureg calculate_light_attenuation( struct tnl_program *p,
964 GLuint i,
965 struct ureg VPpli,
966 struct ureg dist )
967 {
968 struct ureg attenuation = register_param3(p, STATE_LIGHT, i,
969 STATE_ATTENUATION);
970 struct ureg att = get_temp(p);
971
972 /* Calculate spot attenuation:
973 */
974 if (!p->state->unit[i].light_spotcutoff_is_180) {
975 struct ureg spot_dir_norm = register_param3(p, STATE_INTERNAL,
976 STATE_LIGHT_SPOT_DIR_NORMALIZED, i);
977 struct ureg spot = get_temp(p);
978 struct ureg slt = get_temp(p);
979
980 emit_op2(p, OPCODE_DP3, spot, 0, negate(VPpli), spot_dir_norm);
981 emit_op2(p, OPCODE_SLT, slt, 0, swizzle1(spot_dir_norm,W), spot);
982 emit_op2(p, OPCODE_POW, spot, 0, spot, swizzle1(attenuation, W));
983 emit_op2(p, OPCODE_MUL, att, 0, slt, spot);
984
985 release_temp(p, spot);
986 release_temp(p, slt);
987 }
988
989 /* Calculate distance attenuation:
990 */
991 if (p->state->unit[i].light_attenuated) {
992
993 /* 1/d,d,d,1/d */
994 emit_op1(p, OPCODE_RCP, dist, WRITEMASK_YZ, dist);
995 /* 1,d,d*d,1/d */
996 emit_op2(p, OPCODE_MUL, dist, WRITEMASK_XZ, dist, swizzle1(dist,Y));
997 /* 1/dist-atten */
998 emit_op2(p, OPCODE_DP3, dist, 0, attenuation, dist);
999
1000 if (!p->state->unit[i].light_spotcutoff_is_180) {
1001 /* dist-atten */
1002 emit_op1(p, OPCODE_RCP, dist, 0, dist);
1003 /* spot-atten * dist-atten */
1004 emit_op2(p, OPCODE_MUL, att, 0, dist, att);
1005 } else {
1006 /* dist-atten */
1007 emit_op1(p, OPCODE_RCP, att, 0, dist);
1008 }
1009 }
1010
1011 return att;
1012 }
1013
1014
1015 /**
1016 * Compute:
1017 * lit.y = MAX(0, dots.x)
1018 * lit.z = SLT(0, dots.x)
1019 */
1020 static void emit_degenerate_lit( struct tnl_program *p,
1021 struct ureg lit,
1022 struct ureg dots )
1023 {
1024 struct ureg id = get_identity_param(p); /* id = {0,0,0,1} */
1025
1026 /* Note that lit.x & lit.w will not be examined. Note also that
1027 * dots.xyzw == dots.xxxx.
1028 */
1029
1030 /* MAX lit, id, dots;
1031 */
1032 emit_op2(p, OPCODE_MAX, lit, WRITEMASK_XYZW, id, dots);
1033
1034 /* result[2] = (in > 0 ? 1 : 0)
1035 * SLT lit.z, id.z, dots; # lit.z = (0 < dots.z) ? 1 : 0
1036 */
1037 emit_op2(p, OPCODE_SLT, lit, WRITEMASK_Z, swizzle1(id,Z), dots);
1038 }
1039
1040
1041 /* Need to add some addtional parameters to allow lighting in object
1042 * space - STATE_SPOT_DIRECTION and STATE_HALF_VECTOR implicitly assume eye
1043 * space lighting.
1044 */
1045 static void build_lighting( struct tnl_program *p )
1046 {
1047 const GLboolean twoside = p->state->light_twoside;
1048 const GLboolean separate = p->state->separate_specular;
1049 GLuint nr_lights = 0, count = 0;
1050 struct ureg normal = get_transformed_normal(p);
1051 struct ureg lit = get_temp(p);
1052 struct ureg dots = get_temp(p);
1053 struct ureg _col0 = undef, _col1 = undef;
1054 struct ureg _bfc0 = undef, _bfc1 = undef;
1055 GLuint i;
1056
1057 /*
1058 * NOTE:
1059 * dot.x = dot(normal, VPpli)
1060 * dot.y = dot(normal, halfAngle)
1061 * dot.z = back.shininess
1062 * dot.w = front.shininess
1063 */
1064
1065 for (i = 0; i < MAX_LIGHTS; i++)
1066 if (p->state->unit[i].light_enabled)
1067 nr_lights++;
1068
1069 set_material_flags(p);
1070
1071 {
1072 if (!p->state->material_shininess_is_zero) {
1073 struct ureg shininess = get_material(p, 0, STATE_SHININESS);
1074 emit_op1(p, OPCODE_MOV, dots, WRITEMASK_W, swizzle1(shininess,X));
1075 release_temp(p, shininess);
1076 }
1077
1078 _col0 = make_temp(p, get_scenecolor(p, 0));
1079 if (separate)
1080 _col1 = make_temp(p, get_identity_param(p));
1081 else
1082 _col1 = _col0;
1083
1084 }
1085
1086 if (twoside) {
1087 if (!p->state->material_shininess_is_zero) {
1088 struct ureg shininess = get_material(p, 1, STATE_SHININESS);
1089 emit_op1(p, OPCODE_MOV, dots, WRITEMASK_Z,
1090 negate(swizzle1(shininess,X)));
1091 release_temp(p, shininess);
1092 }
1093
1094 _bfc0 = make_temp(p, get_scenecolor(p, 1));
1095 if (separate)
1096 _bfc1 = make_temp(p, get_identity_param(p));
1097 else
1098 _bfc1 = _bfc0;
1099 }
1100
1101 /* If no lights, still need to emit the scenecolor.
1102 */
1103 {
1104 struct ureg res0 = register_output( p, VERT_RESULT_COL0 );
1105 emit_op1(p, OPCODE_MOV, res0, 0, _col0);
1106 }
1107
1108 if (separate) {
1109 struct ureg res1 = register_output( p, VERT_RESULT_COL1 );
1110 emit_op1(p, OPCODE_MOV, res1, 0, _col1);
1111 }
1112
1113 if (twoside) {
1114 struct ureg res0 = register_output( p, VERT_RESULT_BFC0 );
1115 emit_op1(p, OPCODE_MOV, res0, 0, _bfc0);
1116 }
1117
1118 if (twoside && separate) {
1119 struct ureg res1 = register_output( p, VERT_RESULT_BFC1 );
1120 emit_op1(p, OPCODE_MOV, res1, 0, _bfc1);
1121 }
1122
1123 if (nr_lights == 0) {
1124 release_temps(p);
1125 return;
1126 }
1127
1128 for (i = 0; i < MAX_LIGHTS; i++) {
1129 if (p->state->unit[i].light_enabled) {
1130 struct ureg half = undef;
1131 struct ureg att = undef, VPpli = undef;
1132
1133 count++;
1134
1135 if (p->state->unit[i].light_eyepos3_is_zero) {
1136 /* Can used precomputed constants in this case.
1137 * Attenuation never applies to infinite lights.
1138 */
1139 VPpli = register_param3(p, STATE_INTERNAL,
1140 STATE_LIGHT_POSITION_NORMALIZED, i);
1141
1142 if (!p->state->material_shininess_is_zero) {
1143 if (p->state->light_local_viewer) {
1144 struct ureg eye_hat = get_eye_position_normalized(p);
1145 half = get_temp(p);
1146 emit_op2(p, OPCODE_SUB, half, 0, VPpli, eye_hat);
1147 emit_normalize_vec3(p, half, half);
1148 } else {
1149 half = register_param3(p, STATE_INTERNAL,
1150 STATE_LIGHT_HALF_VECTOR, i);
1151 }
1152 }
1153 }
1154 else {
1155 struct ureg Ppli = register_param3(p, STATE_INTERNAL,
1156 STATE_LIGHT_POSITION, i);
1157 struct ureg V = get_eye_position(p);
1158 struct ureg dist = get_temp(p);
1159
1160 VPpli = get_temp(p);
1161
1162 /* Calculate VPpli vector
1163 */
1164 emit_op2(p, OPCODE_SUB, VPpli, 0, Ppli, V);
1165
1166 /* Normalize VPpli. The dist value also used in
1167 * attenuation below.
1168 */
1169 emit_op2(p, OPCODE_DP3, dist, 0, VPpli, VPpli);
1170 emit_op1(p, OPCODE_RSQ, dist, 0, dist);
1171 emit_op2(p, OPCODE_MUL, VPpli, 0, VPpli, dist);
1172
1173 /* Calculate attenuation:
1174 */
1175 if (!p->state->unit[i].light_spotcutoff_is_180 ||
1176 p->state->unit[i].light_attenuated) {
1177 att = calculate_light_attenuation(p, i, VPpli, dist);
1178 }
1179
1180 /* Calculate viewer direction, or use infinite viewer:
1181 */
1182 if (!p->state->material_shininess_is_zero) {
1183 half = get_temp(p);
1184
1185 if (p->state->light_local_viewer) {
1186 struct ureg eye_hat = get_eye_position_normalized(p);
1187 emit_op2(p, OPCODE_SUB, half, 0, VPpli, eye_hat);
1188 }
1189 else {
1190 struct ureg z_dir = swizzle(get_identity_param(p),X,Y,W,Z);
1191 emit_op2(p, OPCODE_ADD, half, 0, VPpli, z_dir);
1192 }
1193
1194 emit_normalize_vec3(p, half, half);
1195 }
1196
1197 release_temp(p, dist);
1198 }
1199
1200 /* Calculate dot products:
1201 */
1202 if (p->state->material_shininess_is_zero) {
1203 emit_op2(p, OPCODE_DP3, dots, 0, normal, VPpli);
1204 }
1205 else {
1206 emit_op2(p, OPCODE_DP3, dots, WRITEMASK_X, normal, VPpli);
1207 emit_op2(p, OPCODE_DP3, dots, WRITEMASK_Y, normal, half);
1208 }
1209
1210 /* Front face lighting:
1211 */
1212 {
1213 struct ureg ambient = get_lightprod(p, i, 0, STATE_AMBIENT);
1214 struct ureg diffuse = get_lightprod(p, i, 0, STATE_DIFFUSE);
1215 struct ureg specular = get_lightprod(p, i, 0, STATE_SPECULAR);
1216 struct ureg res0, res1;
1217 GLuint mask0, mask1;
1218
1219
1220 if (count == nr_lights) {
1221 if (separate) {
1222 mask0 = WRITEMASK_XYZ;
1223 mask1 = WRITEMASK_XYZ;
1224 res0 = register_output( p, VERT_RESULT_COL0 );
1225 res1 = register_output( p, VERT_RESULT_COL1 );
1226 }
1227 else {
1228 mask0 = 0;
1229 mask1 = WRITEMASK_XYZ;
1230 res0 = _col0;
1231 res1 = register_output( p, VERT_RESULT_COL0 );
1232 }
1233 } else {
1234 mask0 = 0;
1235 mask1 = 0;
1236 res0 = _col0;
1237 res1 = _col1;
1238 }
1239
1240
1241 if (!is_undef(att)) {
1242 /* light is attenuated by distance */
1243 emit_op1(p, OPCODE_LIT, lit, 0, dots);
1244 emit_op2(p, OPCODE_MUL, lit, 0, lit, att);
1245 emit_op3(p, OPCODE_MAD, _col0, 0, swizzle1(lit,X), ambient, _col0);
1246 }
1247 else if (!p->state->material_shininess_is_zero) {
1248 /* there's a non-zero specular term */
1249 emit_op1(p, OPCODE_LIT, lit, 0, dots);
1250 emit_op2(p, OPCODE_ADD, _col0, 0, ambient, _col0);
1251 }
1252 else {
1253 /* no attenutation, no specular */
1254 emit_degenerate_lit(p, lit, dots);
1255 emit_op2(p, OPCODE_ADD, _col0, 0, ambient, _col0);
1256 }
1257
1258 emit_op3(p, OPCODE_MAD, res0, mask0, swizzle1(lit,Y), diffuse, _col0);
1259 emit_op3(p, OPCODE_MAD, res1, mask1, swizzle1(lit,Z), specular, _col1);
1260
1261 release_temp(p, ambient);
1262 release_temp(p, diffuse);
1263 release_temp(p, specular);
1264 }
1265
1266 /* Back face lighting:
1267 */
1268 if (twoside) {
1269 struct ureg ambient = get_lightprod(p, i, 1, STATE_AMBIENT);
1270 struct ureg diffuse = get_lightprod(p, i, 1, STATE_DIFFUSE);
1271 struct ureg specular = get_lightprod(p, i, 1, STATE_SPECULAR);
1272 struct ureg res0, res1;
1273 GLuint mask0, mask1;
1274
1275 if (count == nr_lights) {
1276 if (separate) {
1277 mask0 = WRITEMASK_XYZ;
1278 mask1 = WRITEMASK_XYZ;
1279 res0 = register_output( p, VERT_RESULT_BFC0 );
1280 res1 = register_output( p, VERT_RESULT_BFC1 );
1281 }
1282 else {
1283 mask0 = 0;
1284 mask1 = WRITEMASK_XYZ;
1285 res0 = _bfc0;
1286 res1 = register_output( p, VERT_RESULT_BFC0 );
1287 }
1288 } else {
1289 res0 = _bfc0;
1290 res1 = _bfc1;
1291 mask0 = 0;
1292 mask1 = 0;
1293 }
1294
1295 dots = negate(swizzle(dots,X,Y,W,Z));
1296
1297 if (!is_undef(att)) {
1298 emit_op1(p, OPCODE_LIT, lit, 0, dots);
1299 emit_op2(p, OPCODE_MUL, lit, 0, lit, att);
1300 emit_op3(p, OPCODE_MAD, _bfc0, 0, swizzle1(lit,X), ambient, _bfc0);
1301 }
1302 else if (!p->state->material_shininess_is_zero) {
1303 emit_op1(p, OPCODE_LIT, lit, 0, dots);
1304 emit_op2(p, OPCODE_ADD, _bfc0, 0, ambient, _bfc0);
1305 }
1306 else {
1307 emit_degenerate_lit(p, lit, dots);
1308 emit_op2(p, OPCODE_ADD, _bfc0, 0, ambient, _bfc0);
1309 }
1310
1311 emit_op3(p, OPCODE_MAD, res0, mask0, swizzle1(lit,Y), diffuse, _bfc0);
1312 emit_op3(p, OPCODE_MAD, res1, mask1, swizzle1(lit,Z), specular, _bfc1);
1313
1314 /* restore negate flag for next lighting */
1315 dots = negate(dots);
1316
1317 release_temp(p, ambient);
1318 release_temp(p, diffuse);
1319 release_temp(p, specular);
1320 }
1321
1322 release_temp(p, half);
1323 release_temp(p, VPpli);
1324 release_temp(p, att);
1325 }
1326 }
1327
1328 release_temps( p );
1329 }
1330
1331
1332 static void build_fog( struct tnl_program *p )
1333 {
1334 struct ureg fog = register_output(p, VERT_RESULT_FOGC);
1335 struct ureg input;
1336
1337 if (p->state->fog_source_is_depth) {
1338 input = get_eye_position_z(p);
1339 }
1340 else {
1341 input = swizzle1(register_input(p, VERT_ATTRIB_FOG), X);
1342 }
1343
1344 if (p->state->fog_mode && p->state->tnl_do_vertex_fog) {
1345 struct ureg params = register_param2(p, STATE_INTERNAL,
1346 STATE_FOG_PARAMS_OPTIMIZED);
1347 struct ureg tmp = get_temp(p);
1348 GLboolean useabs = (p->state->fog_mode != FOG_EXP2);
1349
1350 if (useabs) {
1351 emit_op1(p, OPCODE_ABS, tmp, 0, input);
1352 }
1353
1354 switch (p->state->fog_mode) {
1355 case FOG_LINEAR: {
1356 struct ureg id = get_identity_param(p);
1357 emit_op3(p, OPCODE_MAD, tmp, 0, useabs ? tmp : input,
1358 swizzle1(params,X), swizzle1(params,Y));
1359 emit_op2(p, OPCODE_MAX, tmp, 0, tmp, swizzle1(id,X)); /* saturate */
1360 emit_op2(p, OPCODE_MIN, fog, WRITEMASK_X, tmp, swizzle1(id,W));
1361 break;
1362 }
1363 case FOG_EXP:
1364 emit_op2(p, OPCODE_MUL, tmp, 0, useabs ? tmp : input,
1365 swizzle1(params,Z));
1366 emit_op1(p, OPCODE_EX2, fog, WRITEMASK_X, negate(tmp));
1367 break;
1368 case FOG_EXP2:
1369 emit_op2(p, OPCODE_MUL, tmp, 0, input, swizzle1(params,W));
1370 emit_op2(p, OPCODE_MUL, tmp, 0, tmp, tmp);
1371 emit_op1(p, OPCODE_EX2, fog, WRITEMASK_X, negate(tmp));
1372 break;
1373 }
1374
1375 release_temp(p, tmp);
1376 }
1377 else {
1378 /* results = incoming fog coords (compute fog per-fragment later)
1379 *
1380 * KW: Is it really necessary to do anything in this case?
1381 * BP: Yes, we always need to compute the absolute value, unless
1382 * we want to push that down into the fragment program...
1383 */
1384 GLboolean useabs = GL_TRUE;
1385 emit_op1(p, useabs ? OPCODE_ABS : OPCODE_MOV, fog, WRITEMASK_X, input);
1386 }
1387 }
1388
1389 static void build_reflect_texgen( struct tnl_program *p,
1390 struct ureg dest,
1391 GLuint writemask )
1392 {
1393 struct ureg normal = get_transformed_normal(p);
1394 struct ureg eye_hat = get_eye_position_normalized(p);
1395 struct ureg tmp = get_temp(p);
1396
1397 /* n.u */
1398 emit_op2(p, OPCODE_DP3, tmp, 0, normal, eye_hat);
1399 /* 2n.u */
1400 emit_op2(p, OPCODE_ADD, tmp, 0, tmp, tmp);
1401 /* (-2n.u)n + u */
1402 emit_op3(p, OPCODE_MAD, dest, writemask, negate(tmp), normal, eye_hat);
1403
1404 release_temp(p, tmp);
1405 }
1406
1407 static void build_sphere_texgen( struct tnl_program *p,
1408 struct ureg dest,
1409 GLuint writemask )
1410 {
1411 struct ureg normal = get_transformed_normal(p);
1412 struct ureg eye_hat = get_eye_position_normalized(p);
1413 struct ureg tmp = get_temp(p);
1414 struct ureg half = register_scalar_const(p, .5);
1415 struct ureg r = get_temp(p);
1416 struct ureg inv_m = get_temp(p);
1417 struct ureg id = get_identity_param(p);
1418
1419 /* Could share the above calculations, but it would be
1420 * a fairly odd state for someone to set (both sphere and
1421 * reflection active for different texture coordinate
1422 * components. Of course - if two texture units enable
1423 * reflect and/or sphere, things start to tilt in favour
1424 * of seperating this out:
1425 */
1426
1427 /* n.u */
1428 emit_op2(p, OPCODE_DP3, tmp, 0, normal, eye_hat);
1429 /* 2n.u */
1430 emit_op2(p, OPCODE_ADD, tmp, 0, tmp, tmp);
1431 /* (-2n.u)n + u */
1432 emit_op3(p, OPCODE_MAD, r, 0, negate(tmp), normal, eye_hat);
1433 /* r + 0,0,1 */
1434 emit_op2(p, OPCODE_ADD, tmp, 0, r, swizzle(id,X,Y,W,Z));
1435 /* rx^2 + ry^2 + (rz+1)^2 */
1436 emit_op2(p, OPCODE_DP3, tmp, 0, tmp, tmp);
1437 /* 2/m */
1438 emit_op1(p, OPCODE_RSQ, tmp, 0, tmp);
1439 /* 1/m */
1440 emit_op2(p, OPCODE_MUL, inv_m, 0, tmp, half);
1441 /* r/m + 1/2 */
1442 emit_op3(p, OPCODE_MAD, dest, writemask, r, inv_m, half);
1443
1444 release_temp(p, tmp);
1445 release_temp(p, r);
1446 release_temp(p, inv_m);
1447 }
1448
1449
1450 static void build_texture_transform( struct tnl_program *p )
1451 {
1452 GLuint i, j;
1453
1454 for (i = 0; i < MAX_TEXTURE_UNITS; i++) {
1455
1456 if (!(p->state->fragprog_inputs_read & FRAG_BIT_TEX(i)))
1457 continue;
1458
1459 if (p->state->unit[i].texgen_enabled ||
1460 p->state->unit[i].texmat_enabled) {
1461
1462 GLuint texmat_enabled = p->state->unit[i].texmat_enabled;
1463 struct ureg out = register_output(p, VERT_RESULT_TEX0 + i);
1464 struct ureg out_texgen = undef;
1465
1466 if (p->state->unit[i].texgen_enabled) {
1467 GLuint copy_mask = 0;
1468 GLuint sphere_mask = 0;
1469 GLuint reflect_mask = 0;
1470 GLuint normal_mask = 0;
1471 GLuint modes[4];
1472
1473 if (texmat_enabled)
1474 out_texgen = get_temp(p);
1475 else
1476 out_texgen = out;
1477
1478 modes[0] = p->state->unit[i].texgen_mode0;
1479 modes[1] = p->state->unit[i].texgen_mode1;
1480 modes[2] = p->state->unit[i].texgen_mode2;
1481 modes[3] = p->state->unit[i].texgen_mode3;
1482
1483 for (j = 0; j < 4; j++) {
1484 switch (modes[j]) {
1485 case TXG_OBJ_LINEAR: {
1486 struct ureg obj = register_input(p, VERT_ATTRIB_POS);
1487 struct ureg plane =
1488 register_param3(p, STATE_TEXGEN, i,
1489 STATE_TEXGEN_OBJECT_S + j);
1490
1491 emit_op2(p, OPCODE_DP4, out_texgen, WRITEMASK_X << j,
1492 obj, plane );
1493 break;
1494 }
1495 case TXG_EYE_LINEAR: {
1496 struct ureg eye = get_eye_position(p);
1497 struct ureg plane =
1498 register_param3(p, STATE_TEXGEN, i,
1499 STATE_TEXGEN_EYE_S + j);
1500
1501 emit_op2(p, OPCODE_DP4, out_texgen, WRITEMASK_X << j,
1502 eye, plane );
1503 break;
1504 }
1505 case TXG_SPHERE_MAP:
1506 sphere_mask |= WRITEMASK_X << j;
1507 break;
1508 case TXG_REFLECTION_MAP:
1509 reflect_mask |= WRITEMASK_X << j;
1510 break;
1511 case TXG_NORMAL_MAP:
1512 normal_mask |= WRITEMASK_X << j;
1513 break;
1514 case TXG_NONE:
1515 copy_mask |= WRITEMASK_X << j;
1516 }
1517
1518 }
1519
1520
1521 if (sphere_mask) {
1522 build_sphere_texgen(p, out_texgen, sphere_mask);
1523 }
1524
1525 if (reflect_mask) {
1526 build_reflect_texgen(p, out_texgen, reflect_mask);
1527 }
1528
1529 if (normal_mask) {
1530 struct ureg normal = get_transformed_normal(p);
1531 emit_op1(p, OPCODE_MOV, out_texgen, normal_mask, normal );
1532 }
1533
1534 if (copy_mask) {
1535 struct ureg in = register_input(p, VERT_ATTRIB_TEX0+i);
1536 emit_op1(p, OPCODE_MOV, out_texgen, copy_mask, in );
1537 }
1538 }
1539
1540 if (texmat_enabled) {
1541 struct ureg texmat[4];
1542 struct ureg in = (!is_undef(out_texgen) ?
1543 out_texgen :
1544 register_input(p, VERT_ATTRIB_TEX0+i));
1545 if (PREFER_DP4) {
1546 register_matrix_param5( p, STATE_TEXTURE_MATRIX, i, 0, 3,
1547 0, texmat );
1548 emit_matrix_transform_vec4( p, out, texmat, in );
1549 }
1550 else {
1551 register_matrix_param5( p, STATE_TEXTURE_MATRIX, i, 0, 3,
1552 STATE_MATRIX_TRANSPOSE, texmat );
1553 emit_transpose_matrix_transform_vec4( p, out, texmat, in );
1554 }
1555 }
1556
1557 release_temps(p);
1558 }
1559 else {
1560 emit_passthrough(p, VERT_ATTRIB_TEX0+i, VERT_RESULT_TEX0+i);
1561 }
1562 }
1563 }
1564
1565
1566 /**
1567 * Point size attenuation computation.
1568 */
1569 static void build_atten_pointsize( struct tnl_program *p )
1570 {
1571 struct ureg eye = get_eye_position_z(p);
1572 struct ureg state_size = register_param1(p, STATE_POINT_SIZE);
1573 struct ureg state_attenuation = register_param1(p, STATE_POINT_ATTENUATION);
1574 struct ureg out = register_output(p, VERT_RESULT_PSIZ);
1575 struct ureg ut = get_temp(p);
1576
1577 /* dist = |eyez| */
1578 emit_op1(p, OPCODE_ABS, ut, WRITEMASK_Y, swizzle1(eye, Z));
1579 /* p1 + dist * (p2 + dist * p3); */
1580 emit_op3(p, OPCODE_MAD, ut, WRITEMASK_X, swizzle1(ut, Y),
1581 swizzle1(state_attenuation, Z), swizzle1(state_attenuation, Y));
1582 emit_op3(p, OPCODE_MAD, ut, WRITEMASK_X, swizzle1(ut, Y),
1583 ut, swizzle1(state_attenuation, X));
1584
1585 /* 1 / sqrt(factor) */
1586 emit_op1(p, OPCODE_RSQ, ut, WRITEMASK_X, ut );
1587
1588 #if 0
1589 /* out = pointSize / sqrt(factor) */
1590 emit_op2(p, OPCODE_MUL, out, WRITEMASK_X, ut, state_size);
1591 #else
1592 /* this is a good place to clamp the point size since there's likely
1593 * no hardware registers to clamp point size at rasterization time.
1594 */
1595 emit_op2(p, OPCODE_MUL, ut, WRITEMASK_X, ut, state_size);
1596 emit_op2(p, OPCODE_MAX, ut, WRITEMASK_X, ut, swizzle1(state_size, Y));
1597 emit_op2(p, OPCODE_MIN, out, WRITEMASK_X, ut, swizzle1(state_size, Z));
1598 #endif
1599
1600 release_temp(p, ut);
1601 }
1602
1603 /**
1604 * Emit constant point size.
1605 */
1606 static void build_constant_pointsize( struct tnl_program *p )
1607 {
1608 struct ureg state_size = register_param1(p, STATE_POINT_SIZE);
1609 struct ureg out = register_output(p, VERT_RESULT_PSIZ);
1610 emit_op1(p, OPCODE_MOV, out, WRITEMASK_X, state_size);
1611 }
1612
1613 /**
1614 * Pass-though per-vertex point size, from user's point size array.
1615 */
1616 static void build_array_pointsize( struct tnl_program *p )
1617 {
1618 struct ureg in = register_input(p, VERT_ATTRIB_POINT_SIZE);
1619 struct ureg out = register_output(p, VERT_RESULT_PSIZ);
1620 emit_op1(p, OPCODE_MOV, out, WRITEMASK_X, in);
1621 }
1622
1623
1624 static void build_tnl_program( struct tnl_program *p )
1625 { /* Emit the program, starting with modelviewproject:
1626 */
1627 build_hpos(p);
1628
1629 /* Lighting calculations:
1630 */
1631 if (p->state->fragprog_inputs_read & (FRAG_BIT_COL0|FRAG_BIT_COL1)) {
1632 if (p->state->light_global_enabled)
1633 build_lighting(p);
1634 else {
1635 if (p->state->fragprog_inputs_read & FRAG_BIT_COL0)
1636 emit_passthrough(p, VERT_ATTRIB_COLOR0, VERT_RESULT_COL0);
1637
1638 if (p->state->fragprog_inputs_read & FRAG_BIT_COL1)
1639 emit_passthrough(p, VERT_ATTRIB_COLOR1, VERT_RESULT_COL1);
1640 }
1641 }
1642
1643 if ((p->state->fragprog_inputs_read & FRAG_BIT_FOGC) ||
1644 p->state->fog_mode != FOG_NONE)
1645 build_fog(p);
1646
1647 if (p->state->fragprog_inputs_read & FRAG_BITS_TEX_ANY)
1648 build_texture_transform(p);
1649
1650 if (p->state->point_attenuated)
1651 build_atten_pointsize(p);
1652 else if (p->state->point_array)
1653 build_array_pointsize(p);
1654 #if 0
1655 else
1656 build_constant_pointsize(p);
1657 #else
1658 (void) build_constant_pointsize;
1659 #endif
1660
1661 /* Finish up:
1662 */
1663 emit_op1(p, OPCODE_END, undef, 0, undef);
1664
1665 /* Disassemble:
1666 */
1667 if (DISASSEM) {
1668 _mesa_printf ("\n");
1669 }
1670 }
1671
1672
1673 static void
1674 create_new_program( const struct state_key *key,
1675 struct gl_vertex_program *program,
1676 GLuint max_temps)
1677 {
1678 struct tnl_program p;
1679
1680 _mesa_memset(&p, 0, sizeof(p));
1681 p.state = key;
1682 p.program = program;
1683 p.eye_position = undef;
1684 p.eye_position_z = undef;
1685 p.eye_position_normalized = undef;
1686 p.transformed_normal = undef;
1687 p.identity = undef;
1688 p.temp_in_use = 0;
1689
1690 if (max_temps >= sizeof(int) * 8)
1691 p.temp_reserved = 0;
1692 else
1693 p.temp_reserved = ~((1<<max_temps)-1);
1694
1695 /* Start by allocating 32 instructions.
1696 * If we need more, we'll grow the instruction array as needed.
1697 */
1698 p.max_inst = 32;
1699 p.program->Base.Instructions = _mesa_alloc_instructions(p.max_inst);
1700 p.program->Base.String = NULL;
1701 p.program->Base.NumInstructions =
1702 p.program->Base.NumTemporaries =
1703 p.program->Base.NumParameters =
1704 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
1705 p.program->Base.Parameters = _mesa_new_parameter_list();
1706 p.program->Base.InputsRead = 0;
1707 p.program->Base.OutputsWritten = 0;
1708
1709 build_tnl_program( &p );
1710 }
1711
1712
1713 /**
1714 * Return a vertex program which implements the current fixed-function
1715 * transform/lighting/texgen operations.
1716 * XXX move this into core mesa (main/)
1717 */
1718 struct gl_vertex_program *
1719 _mesa_get_fixed_func_vertex_program(GLcontext *ctx)
1720 {
1721 struct gl_vertex_program *prog;
1722 struct state_key key;
1723
1724 /* Grab all the relevent state and put it in a single structure:
1725 */
1726 make_state_key(ctx, &key);
1727
1728 /* Look for an already-prepared program for this state:
1729 */
1730 prog = (struct gl_vertex_program *)
1731 _mesa_search_program_cache(ctx->VertexProgram.Cache, &key, sizeof(key));
1732
1733 if (!prog) {
1734 /* OK, we'll have to build a new one */
1735 if (0)
1736 _mesa_printf("Build new TNL program\n");
1737
1738 prog = (struct gl_vertex_program *)
1739 ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
1740 if (!prog)
1741 return NULL;
1742
1743 create_new_program( &key, prog,
1744 ctx->Const.VertexProgram.MaxTemps );
1745
1746 #if 0
1747 if (ctx->Driver.ProgramStringNotify)
1748 ctx->Driver.ProgramStringNotify( ctx, GL_VERTEX_PROGRAM_ARB,
1749 &prog->Base );
1750 #endif
1751 _mesa_program_cache_insert(ctx, ctx->VertexProgram.Cache,
1752 &key, sizeof(key), &prog->Base);
1753 }
1754
1755 return prog;
1756 }