blob: 6f9fe2dc454afa0c3296177b6c7c74e34e41b239 [file] [log] [blame]
Keith Whitwell15e75e02005-04-29 15:11:39 +00001/**************************************************************************
2 *
3 * Copyright 2003 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
Keith Whitwell15e75e02005-04-29 15:11:39 +000028#include "glheader.h"
29#include "macros.h"
30#include "enums.h"
31#include "texenvprogram.h"
32
33#include "shader/program.h"
34#include "shader/nvfragprog.h"
35#include "shader/arbfragparse.h"
36
37
Keith Whitwell269e3892005-05-12 10:28:43 +000038#define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)
Keith Whitwell15e75e02005-04-29 15:11:39 +000039
Keith Whitwellce721142005-07-11 10:10:38 +000040struct mode_opt {
41 unsigned Source:4;
42 unsigned Operand:3;
43};
44
45struct state_key {
46 GLuint enabled_units;
47 unsigned separate_specular:1;
48 unsigned fog_enabled:1;
49 unsigned fog_mode:2;
50
51 struct {
52 unsigned enabled:1;
53 unsigned source_index:3;
54 unsigned ScaleShiftRGB:2;
55 unsigned ScaleShiftA:2;
56
57 unsigned NumArgsRGB:2;
58 unsigned ModeRGB:4;
59 struct mode_opt OptRGB[3];
60
61 unsigned NumArgsA:2;
62 unsigned ModeA:4;
63 struct mode_opt OptA[3];
64 } unit[8];
65};
66
67#define FOG_LINEAR 0
68#define FOG_EXP 1
69#define FOG_EXP2 2
70#define FOG_UNKNOWN 3
71
72static GLuint translate_fog_mode( GLenum mode )
73{
74 switch (mode) {
75 case GL_LINEAR: return FOG_LINEAR;
76 case GL_EXP: return FOG_EXP;
77 case GL_EXP2: return FOG_EXP2;
78 default: return FOG_UNKNOWN;
79 }
80}
81
82#define OPR_SRC_COLOR 0
83#define OPR_ONE_MINUS_SRC_COLOR 1
84#define OPR_SRC_ALPHA 2
85#define OPR_ONE_MINUS_SRC_ALPHA 3
86#define OPR_ZERO 4
87#define OPR_ONE 5
88#define OPR_UNKNOWN 7
89
90static GLuint translate_operand( GLenum operand )
91{
92 switch (operand) {
93 case GL_SRC_COLOR: return OPR_SRC_COLOR;
94 case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR;
95 case GL_SRC_ALPHA: return OPR_SRC_ALPHA;
96 case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA;
97 case GL_ZERO: return OPR_ZERO;
98 case GL_ONE: return OPR_ONE;
99 default: return OPR_UNKNOWN;
100 }
101}
102
103#define SRC_TEXTURE 0
104#define SRC_TEXTURE0 1
105#define SRC_TEXTURE1 2
106#define SRC_TEXTURE2 3
107#define SRC_TEXTURE3 4
108#define SRC_TEXTURE4 5
109#define SRC_TEXTURE5 6
110#define SRC_TEXTURE6 7
111#define SRC_TEXTURE7 8
112#define SRC_CONSTANT 9
113#define SRC_PRIMARY_COLOR 10
114#define SRC_PREVIOUS 11
115#define SRC_UNKNOWN 15
116
117static GLuint translate_source( GLenum src )
118{
119 switch (src) {
120 case GL_TEXTURE: return SRC_TEXTURE;
121 case GL_TEXTURE0:
122 case GL_TEXTURE1:
123 case GL_TEXTURE2:
124 case GL_TEXTURE3:
125 case GL_TEXTURE4:
126 case GL_TEXTURE5:
127 case GL_TEXTURE6:
128 case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0);
129 case GL_CONSTANT: return SRC_CONSTANT;
130 case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR;
131 case GL_PREVIOUS: return SRC_PREVIOUS;
132 default: return SRC_UNKNOWN;
133 }
134}
135
136#define MODE_REPLACE 0
137#define MODE_MODULATE 1
138#define MODE_ADD 2
139#define MODE_ADD_SIGNED 3
140#define MODE_INTERPOLATE 4
141#define MODE_SUBTRACT 5
142#define MODE_DOT3_RGB 6
143#define MODE_DOT3_RGB_EXT 7
144#define MODE_DOT3_RGBA 8
145#define MODE_DOT3_RGBA_EXT 9
146#define MODE_MODULATE_ADD_ATI 10
147#define MODE_MODULATE_SIGNED_ADD_ATI 11
148#define MODE_MODULATE_SUBTRACT_ATI 12
149#define MODE_UNKNOWN 15
150
151static GLuint translate_mode( GLenum mode )
152{
153 switch (mode) {
154 case GL_REPLACE: return MODE_REPLACE;
155 case GL_MODULATE: return MODE_MODULATE;
156 case GL_ADD: return MODE_ADD;
157 case GL_ADD_SIGNED: return MODE_ADD_SIGNED;
158 case GL_INTERPOLATE: return MODE_INTERPOLATE;
159 case GL_SUBTRACT: return MODE_SUBTRACT;
160 case GL_DOT3_RGB: return MODE_DOT3_RGB;
161 case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT;
162 case GL_DOT3_RGBA: return MODE_DOT3_RGBA;
163 case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT;
164 case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI;
165 case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI;
166 case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI;
167 default: return MODE_UNKNOWN;
168 }
169}
170
171#define TEXTURE_UNKNOWN_INDEX 7
Brian Paule00ac112005-09-15 05:00:45 +0000172static GLuint translate_tex_src_bit( GLbitfield bit )
Keith Whitwellce721142005-07-11 10:10:38 +0000173{
174 switch (bit) {
175 case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;
176 case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX;
177 case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX;
178 case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX;
179 case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX;
180 default: return TEXTURE_UNKNOWN_INDEX;
181 }
182}
183
184static struct state_key *make_state_key( GLcontext *ctx )
185{
186 struct state_key *key = CALLOC_STRUCT(state_key);
187 GLuint i, j;
188
189 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
190 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
191
192 if (!texUnit->_ReallyEnabled)
193 continue;
194
195 key->unit[i].enabled = 1;
196 key->enabled_units |= (1<<i);
197
198 key->unit[i].source_index =
199 translate_tex_src_bit(texUnit->_ReallyEnabled);
200
201 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
202 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
203
204 key->unit[i].ModeRGB =
205 translate_mode(texUnit->_CurrentCombine->ModeRGB);
206 key->unit[i].ModeA =
207 translate_mode(texUnit->_CurrentCombine->ModeA);
208
209 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
210 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftRGB;
211
212 for (j=0;j<3;j++) {
213 key->unit[i].OptRGB[j].Operand =
214 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
215 key->unit[i].OptA[j].Operand =
216 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
217 key->unit[i].OptRGB[j].Source =
218 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
219 key->unit[i].OptA[j].Source =
220 translate_source(texUnit->_CurrentCombine->SourceA[j]);
221 }
222 }
223
224 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
225 key->separate_specular = 1;
226
227 if (ctx->Fog.Enabled) {
228 key->fog_enabled = 1;
229 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
230 }
231
232 return key;
233}
234
Keith Whitwell15e75e02005-04-29 15:11:39 +0000235/* Use uregs to represent registers internally, translate to Mesa's
236 * expected formats on emit.
237 *
238 * NOTE: These are passed by value extensively in this file rather
239 * than as usual by pointer reference. If this disturbs you, try
240 * remembering they are just 32bits in size.
241 *
242 * GCC is smart enough to deal with these dword-sized structures in
243 * much the same way as if I had defined them as dwords and was using
244 * macros to access and set the fields. This is much nicer and easier
245 * to evolve.
246 */
247struct ureg {
248 GLuint file:4;
249 GLuint idx:8;
250 GLuint negatebase:1;
251 GLuint abs:1;
252 GLuint negateabs:1;
253 GLuint swz:12;
254 GLuint pad:5;
255};
256
257const static struct ureg undef = {
258 ~0,
259 ~0,
260 0,
261 0,
262 0,
263 0,
264 0
265};
266
267#define X 0
268#define Y 1
269#define Z 2
270#define W 3
271
Keith Whitwell15e75e02005-04-29 15:11:39 +0000272/* State used to build the fragment program:
273 */
274struct texenv_fragment_program {
Keith Whitwell47b29f52005-05-04 11:44:44 +0000275 struct fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000276 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000277 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000278
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000279 GLuint alu_temps; /* Track texture indirections, see spec. */
280 GLuint temps_output; /* Track texture indirections, see spec. */
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000281
Keith Whitwell93cd9232005-05-11 08:30:23 +0000282 GLuint temp_in_use; /* Tracks temporary regs which are in
Keith Whitwell15e75e02005-04-29 15:11:39 +0000283 * use.
284 */
285
286
Keith Whitwell15e75e02005-04-29 15:11:39 +0000287 GLboolean error;
288
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000289 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000290 /* Reg containing each texture unit's sampled texture color,
291 * else undef.
292 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000293
294 struct ureg src_previous; /* Reg containing color from previous
295 * stage. May need to be decl'd.
296 */
297
298 GLuint last_tex_stage; /* Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000299
300 struct ureg half;
301 struct ureg one;
302 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000303};
304
305
306
307static struct ureg make_ureg(GLuint file, GLuint idx)
308{
309 struct ureg reg;
310 reg.file = file;
311 reg.idx = idx;
312 reg.negatebase = 0;
313 reg.abs = 0;
314 reg.negateabs = 0;
315 reg.swz = SWIZZLE_NOOP;
316 reg.pad = 0;
317 return reg;
318}
319
320static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
321{
322 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
323 GET_SWZ(reg.swz, y),
324 GET_SWZ(reg.swz, z),
325 GET_SWZ(reg.swz, w));
326
327 return reg;
328}
329
330static struct ureg swizzle1( struct ureg reg, int x )
331{
332 return swizzle(reg, x, x, x, x);
333}
334
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000335static struct ureg negate( struct ureg reg )
336{
337 reg.negatebase ^= 1;
338 return reg;
339}
340
Keith Whitwell15e75e02005-04-29 15:11:39 +0000341static GLboolean is_undef( struct ureg reg )
342{
343 return reg.file == 0xf;
344}
345
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000346
Keith Whitwell15e75e02005-04-29 15:11:39 +0000347static struct ureg get_temp( struct texenv_fragment_program *p )
348{
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000349 int bit;
350
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000351 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000352 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000353 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000354
355 /* Then any unused temporary:
356 */
357 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000358 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000359
Keith Whitwell15e75e02005-04-29 15:11:39 +0000360 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000361 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000362 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000363 }
364
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000365 if (bit > p->program->Base.NumTemporaries)
366 p->program->Base.NumTemporaries = bit;
367
Keith Whitwell93cd9232005-05-11 08:30:23 +0000368 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000369 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
370}
371
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000372static struct ureg get_tex_temp( struct texenv_fragment_program *p )
373{
374 int bit;
375
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000376 /* First try to find availble temp not previously used (to avoid
377 * starting a new texture indirection). According to the spec, the
378 * ~p->temps_output isn't necessary, but will keep it there for
379 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000380 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000381 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000382
383 /* Then any unused temporary:
384 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000385 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000386 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000387
388 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000389 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000390 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000391 }
392
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000393 if (bit > p->program->Base.NumTemporaries)
394 p->program->Base.NumTemporaries = bit;
395
Keith Whitwell93cd9232005-05-11 08:30:23 +0000396 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000397 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
398}
399
Keith Whitwell15e75e02005-04-29 15:11:39 +0000400
401static void release_temps( struct texenv_fragment_program *p )
402{
Keith Whitwell93cd9232005-05-11 08:30:23 +0000403 GLuint max_temp = p->ctx->Const.MaxFragmentProgramTemps;
404
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000405 /* KW: To support tex_env_crossbar, don't release the registers in
406 * temps_output.
407 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000408 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000409 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000410 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000411 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000412}
413
414
Keith Whitwell47b29f52005-05-04 11:44:44 +0000415static struct ureg register_param6( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000416 GLint s0,
417 GLint s1,
418 GLint s2,
419 GLint s3,
420 GLint s4,
421 GLint s5)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000422{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000423 GLint tokens[6];
424 GLuint idx;
425 tokens[0] = s0;
426 tokens[1] = s1;
427 tokens[2] = s2;
428 tokens[3] = s3;
429 tokens[4] = s4;
430 tokens[5] = s5;
431 idx = _mesa_add_state_reference( p->program->Parameters, tokens );
432 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000433}
434
Keith Whitwell47b29f52005-05-04 11:44:44 +0000435
436#define register_param1(p,s0) register_param6(p,s0,0,0,0,0,0)
437#define register_param2(p,s0,s1) register_param6(p,s0,s1,0,0,0,0)
438#define register_param3(p,s0,s1,s2) register_param6(p,s0,s1,s2,0,0,0)
439#define register_param4(p,s0,s1,s2,s3) register_param6(p,s0,s1,s2,s3,0,0)
440
441
442static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
443{
444 p->program->InputsRead |= (1<<input);
445 return make_ureg(PROGRAM_INPUT, input);
446}
447
448
Keith Whitwell15e75e02005-04-29 15:11:39 +0000449static void emit_arg( struct fp_src_register *reg,
450 struct ureg ureg )
451{
452 reg->File = ureg.file;
453 reg->Index = ureg.idx;
454 reg->Swizzle = ureg.swz;
455 reg->NegateBase = ureg.negatebase;
456 reg->Abs = ureg.abs;
457 reg->NegateAbs = ureg.negateabs;
458}
459
460static void emit_dst( struct fp_dst_register *dst,
461 struct ureg ureg, GLuint mask )
462{
463 dst->File = ureg.file;
464 dst->Index = ureg.idx;
465 dst->WriteMask = mask;
466 dst->CondMask = 0;
467 dst->CondSwizzle = 0;
468}
469
470static struct fp_instruction *
471emit_op(struct texenv_fragment_program *p,
472 GLuint op,
473 struct ureg dest,
474 GLuint mask,
475 GLuint saturate,
476 struct ureg src0,
477 struct ureg src1,
478 struct ureg src2 )
479{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000480 GLuint nr = p->program->Base.NumInstructions++;
481 struct fp_instruction *inst = &p->program->Instructions[nr];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000482
Brian Paulaa206952005-09-16 18:14:24 +0000483 _mesa_memset(inst, 0, sizeof(*inst));
Keith Whitwell15e75e02005-04-29 15:11:39 +0000484 inst->Opcode = op;
485
Keith Whitwell47b29f52005-05-04 11:44:44 +0000486 emit_arg( &inst->SrcReg[0], src0 );
487 emit_arg( &inst->SrcReg[1], src1 );
488 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000489
490 inst->Saturate = saturate;
491
492 emit_dst( &inst->DstReg, dest, mask );
493
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000494 /* Accounting for indirection tracking:
495 */
496 if (dest.file == PROGRAM_TEMPORARY)
497 p->temps_output |= 1 << dest.idx;
498
Keith Whitwell15e75e02005-04-29 15:11:39 +0000499 return inst;
500}
501
502
503static struct ureg emit_arith( struct texenv_fragment_program *p,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000504 GLuint op,
505 struct ureg dest,
506 GLuint mask,
507 GLuint saturate,
508 struct ureg src0,
509 struct ureg src1,
510 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000511{
512 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
513
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000514 /* Accounting for indirection tracking:
515 */
516 if (src0.file == PROGRAM_TEMPORARY)
517 p->alu_temps |= 1 << src0.idx;
518
519 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
520 p->alu_temps |= 1 << src1.idx;
521
522 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
523 p->alu_temps |= 1 << src2.idx;
524
525 if (dest.file == PROGRAM_TEMPORARY)
526 p->alu_temps |= 1 << dest.idx;
527
Keith Whitwell47b29f52005-05-04 11:44:44 +0000528 p->program->NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000529 return dest;
530}
531
532static struct ureg emit_texld( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000533 GLuint op,
534 struct ureg dest,
535 GLuint destmask,
536 GLuint tex_unit,
537 GLuint tex_idx,
538 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000539{
540 struct fp_instruction *inst = emit_op( p, op,
541 dest, destmask,
542 0, /* don't saturate? */
543 coord, /* arg 0? */
544 undef,
545 undef);
546
547 inst->TexSrcIdx = tex_idx;
548 inst->TexSrcUnit = tex_unit;
549
Keith Whitwell47b29f52005-05-04 11:44:44 +0000550 p->program->NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000551
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000552 /* Is this a texture indirection?
553 */
554 if ((coord.file == PROGRAM_TEMPORARY &&
555 (p->temps_output & (1<<coord.idx))) ||
556 (dest.file == PROGRAM_TEMPORARY &&
557 (p->alu_temps & (1<<dest.idx)))) {
Keith Whitwell47b29f52005-05-04 11:44:44 +0000558 p->program->NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000559 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000560 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000561 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000562 }
563
564 return dest;
565}
566
567
Keith Whitwell47b29f52005-05-04 11:44:44 +0000568static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000569 GLfloat s0,
570 GLfloat s1,
571 GLfloat s2,
572 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000573{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000574 GLfloat values[4];
575 GLuint idx;
576 values[0] = s0;
577 values[1] = s1;
578 values[2] = s2;
579 values[3] = s3;
580 idx = _mesa_add_unnamed_constant( p->program->Parameters, values );
581 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000582}
583
Keith Whitwelle4902422005-05-11 15:16:35 +0000584#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000585#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
586#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
587#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000588
589
590
Keith Whitwell15e75e02005-04-29 15:11:39 +0000591
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000592static struct ureg get_one( struct texenv_fragment_program *p )
593{
594 if (is_undef(p->one))
595 p->one = register_scalar_const(p, 1.0);
596 return p->one;
597}
598
599static struct ureg get_half( struct texenv_fragment_program *p )
600{
601 if (is_undef(p->half))
602 p->one = register_scalar_const(p, 0.5);
603 return p->half;
604}
605
606static struct ureg get_zero( struct texenv_fragment_program *p )
607{
608 if (is_undef(p->zero))
609 p->one = register_scalar_const(p, 0.0);
610 return p->zero;
611}
612
Keith Whitwell15e75e02005-04-29 15:11:39 +0000613
614
615
616
617static void program_error( struct texenv_fragment_program *p, const char *msg )
618{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000619 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000620 p->error = 1;
621}
622
Keith Whitwell15e75e02005-04-29 15:11:39 +0000623static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000624 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000625{
626 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000627 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000628 assert(!is_undef(p->src_texture[unit]));
629 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000630
Keith Whitwellce721142005-07-11 10:10:38 +0000631 case SRC_TEXTURE0:
632 case SRC_TEXTURE1:
633 case SRC_TEXTURE2:
634 case SRC_TEXTURE3:
635 case SRC_TEXTURE4:
636 case SRC_TEXTURE5:
637 case SRC_TEXTURE6:
638 case SRC_TEXTURE7:
639 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
640 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000641
Keith Whitwellce721142005-07-11 10:10:38 +0000642 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000643 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000644
Keith Whitwellce721142005-07-11 10:10:38 +0000645 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000646 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000647
Keith Whitwellce721142005-07-11 10:10:38 +0000648 case SRC_PREVIOUS:
649 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000650 if (is_undef(p->src_previous))
651 return register_input(p, FRAG_ATTRIB_COL0);
652 else
653 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000654 }
655}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000656
Keith Whitwell15e75e02005-04-29 15:11:39 +0000657static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000658 GLuint mask,
659 GLuint unit,
660 GLuint source,
661 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000662{
663 struct ureg arg, src, one;
664
665 src = get_source(p, source, unit);
666
667 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000668 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000669 /* Get unused tmp,
670 * Emit tmp = 1.0 - arg.xyzw
671 */
672 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000673 one = get_one( p );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000674 return emit_arith( p, FP_OPCODE_SUB, arg, mask, 0, one, src, undef);
675
Keith Whitwellce721142005-07-11 10:10:38 +0000676 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000677 if (mask == WRITEMASK_W)
678 return src;
679 else
680 return swizzle1( src, W );
Keith Whitwellce721142005-07-11 10:10:38 +0000681 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000682 /* Get unused tmp,
683 * Emit tmp = 1.0 - arg.wwww
684 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000685 arg = get_temp(p);
686 one = get_one(p);
687 return emit_arith(p, FP_OPCODE_SUB, arg, mask, 0,
688 one, swizzle1(src, W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000689 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000690 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000691 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000692 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000693 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000694 default:
695 return src;
696 }
697}
698
Keith Whitwellce721142005-07-11 10:10:38 +0000699static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000700{
Keith Whitwellce721142005-07-11 10:10:38 +0000701 int i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000702
703 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000704 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000705 return GL_FALSE;
706
Keith Whitwellce721142005-07-11 10:10:38 +0000707 switch(key->unit[unit].OptA[i].Operand) {
708 case OPR_SRC_ALPHA:
709 switch(key->unit[unit].OptRGB[i].Operand) {
710 case OPR_SRC_COLOR:
711 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000712 break;
713 default:
714 return GL_FALSE;
715 }
716 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000717 case OPR_ONE_MINUS_SRC_ALPHA:
718 switch(key->unit[unit].OptRGB[i].Operand) {
719 case OPR_ONE_MINUS_SRC_COLOR:
720 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000721 break;
722 default:
723 return GL_FALSE;
724 }
725 break;
726 default:
727 return GL_FALSE; /* impossible */
728 }
729 }
730
731 return GL_TRUE;
732}
733
Keith Whitwell15e75e02005-04-29 15:11:39 +0000734static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000735 struct ureg dest,
736 GLuint mask,
737 GLuint saturate,
738 GLuint unit,
739 GLuint nr,
740 GLuint mode,
741 struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000742{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000743 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000744 struct ureg tmp, half;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000745 int i;
746
747 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000748 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000749
750 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000751 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000752 if (mask == WRITEMASK_XYZW && !saturate)
753 return src[0];
754 else
755 return emit_arith( p, FP_OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000756 case MODE_MODULATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000757 return emit_arith( p, FP_OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000758 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000759 case MODE_ADD:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000760 return emit_arith( p, FP_OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000761 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000762 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000763 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000764 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000765 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000766 half = get_half(p);
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000767 emit_arith( p, FP_OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
768 emit_arith( p, FP_OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000769 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000770 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000771 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
772 */
773 return emit_arith( p, FP_OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
774
Keith Whitwellce721142005-07-11 10:10:38 +0000775 case MODE_SUBTRACT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000776 return emit_arith( p, FP_OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
777
Keith Whitwellce721142005-07-11 10:10:38 +0000778 case MODE_DOT3_RGBA:
779 case MODE_DOT3_RGBA_EXT:
780 case MODE_DOT3_RGB_EXT:
781 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000782 struct ureg tmp0 = get_temp( p );
783 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000784 struct ureg neg1 = register_scalar_const(p, -1);
785 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000786
787 /* tmp0 = 2*src0 - 1
788 * tmp1 = 2*src1 - 1
789 *
790 * dst = tmp0 dot3 tmp1
791 */
792 emit_arith( p, FP_OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000793 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000794
Brian Paulaa206952005-09-16 18:14:24 +0000795 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000796 tmp1 = tmp0;
797 else
798 emit_arith( p, FP_OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000799 two, src[1], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000800 emit_arith( p, FP_OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
801 return dest;
802 }
Keith Whitwellce721142005-07-11 10:10:38 +0000803 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000804 /* Arg0 * Arg2 + Arg1 */
805 return emit_arith( p, FP_OPCODE_MAD, dest, mask, saturate,
806 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000807 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000808 /* Arg0 * Arg2 + Arg1 - 0.5 */
809 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000810 half = get_half(p);
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000811 emit_arith( p, FP_OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
812 emit_arith( p, FP_OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
813 return dest;
814 }
Keith Whitwellce721142005-07-11 10:10:38 +0000815 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000816 /* Arg0 * Arg2 - Arg1 */
817 emit_arith( p, FP_OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
818 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000819 default:
820 return src[0];
821 }
822}
823
Keith Whitwell15e75e02005-04-29 15:11:39 +0000824
Keith Whitwell15e75e02005-04-29 15:11:39 +0000825static struct ureg emit_texenv( struct texenv_fragment_program *p, int unit )
826{
Keith Whitwellce721142005-07-11 10:10:38 +0000827 struct state_key *key = p->state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000828 GLuint saturate = (unit < p->last_tex_stage);
829 GLuint rgb_shift, alpha_shift;
830 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000831 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000832
Keith Whitwellce721142005-07-11 10:10:38 +0000833 if (!key->unit[unit].enabled) {
834 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000835 }
Keith Whitwellce721142005-07-11 10:10:38 +0000836
837 switch (key->unit[unit].ModeRGB) {
838 case MODE_DOT3_RGB_EXT:
839 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000840 rgb_shift = 0;
841 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000842 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000843 alpha_shift = 0;
844 rgb_shift = 0;
845 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000846 default:
Keith Whitwellce721142005-07-11 10:10:38 +0000847 rgb_shift = key->unit[unit].ScaleShiftRGB;
848 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000849 break;
850 }
Keith Whitwellce721142005-07-11 10:10:38 +0000851
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000852 /* If this is the very last calculation, emit direct to output reg:
853 */
Keith Whitwellce721142005-07-11 10:10:38 +0000854 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000855 unit != p->last_tex_stage ||
856 alpha_shift ||
857 rgb_shift)
858 dest = get_temp( p );
859 else
860 dest = make_ureg(PROGRAM_OUTPUT, FRAG_OUTPUT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000861
862 /* Emit the RGB and A combine ops
863 */
Keith Whitwellce721142005-07-11 10:10:38 +0000864 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
865 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000866 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
867 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000868 key->unit[unit].NumArgsRGB,
869 key->unit[unit].ModeRGB,
870 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000871 }
Keith Whitwellce721142005-07-11 10:10:38 +0000872 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
873 key->unit[unit].ModeA == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000874
875 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
876 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000877 key->unit[unit].NumArgsRGB,
878 key->unit[unit].ModeRGB,
879 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000880 }
881 else {
882 /* Need to do something to stop from re-emitting identical
883 * argument calculations here:
884 */
885 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
886 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000887 key->unit[unit].NumArgsRGB,
888 key->unit[unit].ModeRGB,
889 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000890 out = emit_combine( p, dest, WRITEMASK_W, saturate,
891 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000892 key->unit[unit].NumArgsA,
893 key->unit[unit].ModeA,
894 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000895 }
896
897 /* Deal with the final shift:
898 */
899 if (alpha_shift || rgb_shift) {
900 if (rgb_shift == alpha_shift) {
Keith Whitwelle4902422005-05-11 15:16:35 +0000901 shift = register_scalar_const(p, 1<<rgb_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000902 }
903 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000904 shift = register_const4f(p,
905 1<<rgb_shift,
906 1<<rgb_shift,
907 1<<rgb_shift,
908 1<<alpha_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000909 }
910 return emit_arith( p, FP_OPCODE_MUL, dest, WRITEMASK_XYZW,
911 saturate, out, shift, undef );
912 }
913 else
914 return out;
915}
916
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000917
918
919static void load_texture( struct texenv_fragment_program *p, GLuint unit )
920{
921 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +0000922 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000923 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
924 struct ureg tmp = get_tex_temp( p );
925
Brian Paulbfb5ea32005-07-19 18:20:04 +0000926 if (dim == TEXTURE_UNKNOWN_INDEX)
927 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +0000928
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000929 /* TODO: Use D0_MASK_XY where possible.
930 */
931 p->src_texture[unit] = emit_texld( p, FP_OPCODE_TXP,
932 tmp, WRITEMASK_XYZW,
933 unit, dim, texcoord );
934 }
935}
936
Keith Whitwell241b6b72005-05-23 09:50:34 +0000937static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000938 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000939{
940 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000941 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000942 load_texture(p, unit);
943 break;
944
Keith Whitwellce721142005-07-11 10:10:38 +0000945 case SRC_TEXTURE0:
946 case SRC_TEXTURE1:
947 case SRC_TEXTURE2:
948 case SRC_TEXTURE3:
949 case SRC_TEXTURE4:
950 case SRC_TEXTURE5:
951 case SRC_TEXTURE6:
952 case SRC_TEXTURE7:
953 if (!p->state->unit[src - SRC_TEXTURE0].enabled)
Keith Whitwell241b6b72005-05-23 09:50:34 +0000954 return GL_FALSE;
Keith Whitwellce721142005-07-11 10:10:38 +0000955 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000956 break;
957
958 default:
959 break;
960 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000961
962 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000963}
964
Keith Whitwell241b6b72005-05-23 09:50:34 +0000965static GLboolean load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000966{
Keith Whitwellce721142005-07-11 10:10:38 +0000967 struct state_key *key = p->state;
968 int i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000969 for (i = 0; i < nr; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000970 if (!load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit) ||
971 !load_texenv_source( p, key->unit[unit].OptA[i].Source, unit ))
Keith Whitwell241b6b72005-05-23 09:50:34 +0000972 return GL_FALSE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000973 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000974 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000975}
976
Keith Whitwellce721142005-07-11 10:10:38 +0000977static void create_new_program(struct state_key *key, GLcontext *ctx,
978 struct fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000979{
980 struct texenv_fragment_program p;
981 GLuint unit;
982 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +0000983
Keith Whitwelle4902422005-05-11 15:16:35 +0000984 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +0000985 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000986 p.state = key;
987 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000988
Keith Whitwellce721142005-07-11 10:10:38 +0000989 p.program->Instructions = MALLOC(sizeof(struct fp_instruction) * 100);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000990 p.program->Base.NumInstructions = 0;
Keith Whitwell276330b2005-05-09 17:58:13 +0000991 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000992 p.program->NumTexIndirections = 1; /* correct? */
993 p.program->NumTexInstructions = 0;
994 p.program->NumAluInstructions = 0;
Keith Whitwell9ca88152005-05-10 09:56:02 +0000995 p.program->Base.String = 0;
996 p.program->Base.NumInstructions =
Keith Whitwellce721142005-07-11 10:10:38 +0000997 p.program->Base.NumTemporaries =
998 p.program->Base.NumParameters =
999 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
1000 p.program->Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +00001001
Keith Whitwell9ca88152005-05-10 09:56:02 +00001002 p.program->InputsRead = 0;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +00001003 p.program->OutputsWritten = 1 << FRAG_OUTPUT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001004
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001005 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1006 p.src_texture[unit] = undef;
1007
Keith Whitwell47b29f52005-05-04 11:44:44 +00001008 p.src_previous = undef;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001009 p.last_tex_stage = 0;
Keith Whitwell93cd9232005-05-11 08:30:23 +00001010 release_temps(&p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001011
Keith Whitwellce721142005-07-11 10:10:38 +00001012 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001013 /* First pass - to support texture_env_crossbar, first identify
1014 * all referenced texture sources and emit texld instructions
1015 * for each:
1016 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001017 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001018 if (key->unit[unit].enabled) {
1019 if (load_texunit_sources( &p, unit ))
Keith Whitwell241b6b72005-05-23 09:50:34 +00001020 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001021 }
1022
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001023 /* Second pass - emit combine instructions to build final color:
1024 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001025 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001026 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001027 p.src_previous = emit_texenv( &p, unit );
Keith Whitwell93cd9232005-05-11 08:30:23 +00001028 release_temps(&p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001029 }
1030 }
1031
Keith Whitwellce721142005-07-11 10:10:38 +00001032 cf = get_source( &p, SRC_PREVIOUS, 0 );
Keith Whitwell47b29f52005-05-04 11:44:44 +00001033 out = make_ureg( PROGRAM_OUTPUT, FRAG_OUTPUT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001034
Keith Whitwellce721142005-07-11 10:10:38 +00001035 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001036 /* Emit specular add.
1037 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001038 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001039 emit_arith( &p, FP_OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
Keith Whitwellb5cbaf92005-09-08 18:45:03 +00001040 emit_arith( &p, FP_OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001041 }
Brian Paulaa206952005-09-16 18:14:24 +00001042 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001043 /* Will wind up in here if no texture enabled or a couple of
1044 * other scenarios (GL_REPLACE for instance).
1045 */
1046 emit_arith( &p, FP_OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
1047 }
1048
Keith Whitwell47b29f52005-05-04 11:44:44 +00001049 /* Finish up:
1050 */
1051 emit_arith( &p, FP_OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
1052
Keith Whitwellce721142005-07-11 10:10:38 +00001053 if (key->fog_enabled) {
1054 /* Pull fog mode from GLcontext, the value in the state key is
1055 * a reduced value and not what is expected in FogOption
1056 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001057 p.program->FogOption = ctx->Fog.Mode;
Keith Whitwellce721142005-07-11 10:10:38 +00001058 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001059 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001060
1061 if (p.program->NumTexIndirections > ctx->Const.MaxFragmentProgramTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001062 program_error(&p, "Exceeded max nr indirect texture lookups");
1063
Keith Whitwell47b29f52005-05-04 11:44:44 +00001064 if (p.program->NumTexInstructions > ctx->Const.MaxFragmentProgramTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001065 program_error(&p, "Exceeded max TEX instructions");
1066
Keith Whitwell47b29f52005-05-04 11:44:44 +00001067 if (p.program->NumAluInstructions > ctx->Const.MaxFragmentProgramAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001068 program_error(&p, "Exceeded max ALU instructions");
1069
Keith Whitwell8b88f622005-05-10 11:39:50 +00001070
Keith Whitwelldbeea252005-05-10 13:57:50 +00001071 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001072 */
Keith Whitwelle4902422005-05-11 15:16:35 +00001073 if (ctx->Driver.ProgramStringNotify || DISASSEM) {
Keith Whitwellce721142005-07-11 10:10:38 +00001074 if (ctx->Driver.ProgramStringNotify)
1075 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1076 &p.program->Base );
Keith Whitwelldbeea252005-05-10 13:57:50 +00001077
Keith Whitwellce721142005-07-11 10:10:38 +00001078 if (DISASSEM) {
1079 _mesa_debug_fp_inst(p.program->NumTexInstructions + p.program->NumAluInstructions,
1080 p.program->Instructions);
1081 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001082 }
1083
Keith Whitwelle4902422005-05-11 15:16:35 +00001084 }
Keith Whitwellce721142005-07-11 10:10:38 +00001085
Keith Whitwell15e75e02005-04-29 15:11:39 +00001086}
1087
Keith Whitwellce721142005-07-11 10:10:38 +00001088static void *search_cache( struct texenvprog_cache *cache,
1089 GLuint hash,
1090 const void *key,
1091 GLuint keysize)
1092{
1093 struct texenvprog_cache *c;
1094
1095 for (c = cache; c; c = c->next) {
Brian Paulaa206952005-09-16 18:14:24 +00001096 if (c->hash == hash && _mesa_memcmp(c->key, key, keysize) == 0)
Keith Whitwellce721142005-07-11 10:10:38 +00001097 return c->data;
1098 }
1099
1100 return NULL;
1101}
1102
1103static void cache_item( struct texenvprog_cache **cache,
1104 GLuint hash,
1105 void *key,
1106 void *data )
1107{
1108 struct texenvprog_cache *c = MALLOC(sizeof(*c));
1109 c->hash = hash;
1110 c->key = key;
1111 c->data = data;
1112 c->next = *cache;
1113 *cache = c;
1114}
1115
1116static GLuint hash_key( struct state_key *key )
1117{
1118 GLuint *ikey = (GLuint *)key;
1119 GLuint hash = 0, i;
1120
1121 /* I'm sure this can be improved on, but speed is important:
1122 */
1123 for (i = 0; i < sizeof(*key)/sizeof(GLuint); i++)
1124 hash ^= ikey[i];
1125
1126 return hash;
1127}
1128
1129void _mesa_UpdateTexEnvProgram( GLcontext *ctx )
1130{
1131 struct state_key *key;
1132 GLuint hash;
1133
1134 if (ctx->FragmentProgram._Enabled)
1135 return;
1136
1137 key = make_state_key(ctx);
1138 hash = hash_key(key);
1139
1140 ctx->FragmentProgram._Current = ctx->_TexEnvProgram =
1141 (struct fragment_program *)
1142 search_cache(ctx->Texture.env_fp_cache, hash, key, sizeof(*key));
1143
1144 if (!ctx->_TexEnvProgram) {
1145 if (0) _mesa_printf("Building new texenv proggy for key %x\n", hash);
1146
1147 ctx->FragmentProgram._Current = ctx->_TexEnvProgram =
1148 (struct fragment_program *)
1149 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
1150
1151 create_new_program(key, ctx, ctx->_TexEnvProgram);
1152
1153 cache_item(&ctx->Texture.env_fp_cache, hash, key, ctx->_TexEnvProgram);
1154 } else {
Vladimir Dergachev94a4eb12005-08-06 05:19:42 +00001155 FREE(key);
Keith Whitwellce721142005-07-11 10:10:38 +00001156 if (0) _mesa_printf("Found existing texenv program for key %x\n", hash);
1157 }
1158
1159}
1160
1161void _mesa_TexEnvProgramCacheDestroy( GLcontext *ctx )
1162{
1163 struct texenvprog_cache *a, *tmp;
1164
1165 for (a = ctx->Texture.env_fp_cache; a; a = tmp) {
1166 tmp = a->next;
1167 FREE(a->key);
1168 FREE(a->data);
1169 FREE(a);
1170 }
1171}
Keith Whitwell15e75e02005-04-29 15:11:39 +00001172