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