blob: 7387f4fb2fd2c3dec16aa973d8a9bfdc9c8e3c9e [file] [log] [blame]
Keith Whitwell15e75e02005-04-29 15:11:39 +00001/**************************************************************************
2 *
Keith Whitwell32ef6e72008-09-20 08:26:11 -07003 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
Keith Whitwell15e75e02005-04-29 15:11:39 +00004 * 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"
Brian Paul5b5c9312008-05-07 18:51:44 -060031#include "shader/program.h"
Brianc223c6b2007-07-04 13:15:20 -060032#include "shader/prog_parameter.h"
Keith Whitwell32ef6e72008-09-20 08:26:11 -070033#include "shader/prog_cache.h"
Brianc223c6b2007-07-04 13:15:20 -060034#include "shader/prog_instruction.h"
35#include "shader/prog_print.h"
36#include "shader/prog_statevars.h"
Keith Whitwell15e75e02005-04-29 15:11:39 +000037#include "texenvprogram.h"
38
Brian Paul5b5c9312008-05-07 18:51:44 -060039
40struct texenvprog_cache_item
41{
42 GLuint hash;
43 void *key;
44 struct gl_fragment_program *data;
45 struct texenvprog_cache_item *next;
46};
47
48
Brian Paule998c342006-10-29 21:17:18 +000049/**
Brian2a8e9bb2007-10-23 10:24:53 -060050 * This MAX is probably a bit generous, but that's OK. There can be
51 * up to four instructions per texture unit (TEX + 3 for combine),
52 * then there's fog and specular add.
Brian Paule998c342006-10-29 21:17:18 +000053 */
Brian2a8e9bb2007-10-23 10:24:53 -060054#define MAX_INSTRUCTIONS ((MAX_TEXTURE_UNITS * 4) + 12)
Keith Whitwell15e75e02005-04-29 15:11:39 +000055
Keith Whitwell269e3892005-05-12 10:28:43 +000056#define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)
Keith Whitwell15e75e02005-04-29 15:11:39 +000057
Keith Whitwellce721142005-07-11 10:10:38 +000058struct mode_opt {
Brian Paul5d7b49f2005-11-19 23:12:20 +000059 GLuint Source:4;
60 GLuint Operand:3;
Keith Whitwellce721142005-07-11 10:10:38 +000061};
62
63struct state_key {
Brian Paul5d7b49f2005-11-19 23:12:20 +000064 GLbitfield enabled_units;
65 GLuint separate_specular:1;
66 GLuint fog_enabled:1;
67 GLuint fog_mode:2;
Keith Whitwellce721142005-07-11 10:10:38 +000068
69 struct {
Brian Paul5d7b49f2005-11-19 23:12:20 +000070 GLuint enabled:1;
71 GLuint source_index:3; /* one of TEXTURE_1D/2D/3D/CUBE/RECT_INDEX */
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +020072 GLuint shadow:1;
Brian Paul5d7b49f2005-11-19 23:12:20 +000073 GLuint ScaleShiftRGB:2;
74 GLuint ScaleShiftA:2;
Keith Whitwellce721142005-07-11 10:10:38 +000075
Brian Paul5d7b49f2005-11-19 23:12:20 +000076 GLuint NumArgsRGB:2;
77 GLuint ModeRGB:4;
Keith Whitwellce721142005-07-11 10:10:38 +000078 struct mode_opt OptRGB[3];
79
Brian Paul5d7b49f2005-11-19 23:12:20 +000080 GLuint NumArgsA:2;
81 GLuint ModeA:4;
Keith Whitwellce721142005-07-11 10:10:38 +000082 struct mode_opt OptA[3];
83 } unit[8];
84};
85
86#define FOG_LINEAR 0
87#define FOG_EXP 1
88#define FOG_EXP2 2
89#define FOG_UNKNOWN 3
90
91static GLuint translate_fog_mode( GLenum mode )
92{
93 switch (mode) {
94 case GL_LINEAR: return FOG_LINEAR;
95 case GL_EXP: return FOG_EXP;
96 case GL_EXP2: return FOG_EXP2;
97 default: return FOG_UNKNOWN;
98 }
99}
100
101#define OPR_SRC_COLOR 0
102#define OPR_ONE_MINUS_SRC_COLOR 1
103#define OPR_SRC_ALPHA 2
104#define OPR_ONE_MINUS_SRC_ALPHA 3
105#define OPR_ZERO 4
106#define OPR_ONE 5
107#define OPR_UNKNOWN 7
108
109static GLuint translate_operand( GLenum operand )
110{
111 switch (operand) {
112 case GL_SRC_COLOR: return OPR_SRC_COLOR;
113 case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR;
114 case GL_SRC_ALPHA: return OPR_SRC_ALPHA;
115 case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA;
116 case GL_ZERO: return OPR_ZERO;
117 case GL_ONE: return OPR_ONE;
118 default: return OPR_UNKNOWN;
119 }
120}
121
122#define SRC_TEXTURE 0
123#define SRC_TEXTURE0 1
124#define SRC_TEXTURE1 2
125#define SRC_TEXTURE2 3
126#define SRC_TEXTURE3 4
127#define SRC_TEXTURE4 5
128#define SRC_TEXTURE5 6
129#define SRC_TEXTURE6 7
130#define SRC_TEXTURE7 8
131#define SRC_CONSTANT 9
132#define SRC_PRIMARY_COLOR 10
133#define SRC_PREVIOUS 11
134#define SRC_UNKNOWN 15
135
136static GLuint translate_source( GLenum src )
137{
138 switch (src) {
139 case GL_TEXTURE: return SRC_TEXTURE;
140 case GL_TEXTURE0:
141 case GL_TEXTURE1:
142 case GL_TEXTURE2:
143 case GL_TEXTURE3:
144 case GL_TEXTURE4:
145 case GL_TEXTURE5:
146 case GL_TEXTURE6:
147 case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0);
148 case GL_CONSTANT: return SRC_CONSTANT;
149 case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR;
150 case GL_PREVIOUS: return SRC_PREVIOUS;
151 default: return SRC_UNKNOWN;
152 }
153}
154
155#define MODE_REPLACE 0
156#define MODE_MODULATE 1
157#define MODE_ADD 2
158#define MODE_ADD_SIGNED 3
159#define MODE_INTERPOLATE 4
160#define MODE_SUBTRACT 5
161#define MODE_DOT3_RGB 6
162#define MODE_DOT3_RGB_EXT 7
163#define MODE_DOT3_RGBA 8
164#define MODE_DOT3_RGBA_EXT 9
165#define MODE_MODULATE_ADD_ATI 10
166#define MODE_MODULATE_SIGNED_ADD_ATI 11
167#define MODE_MODULATE_SUBTRACT_ATI 12
168#define MODE_UNKNOWN 15
169
170static GLuint translate_mode( GLenum mode )
171{
172 switch (mode) {
173 case GL_REPLACE: return MODE_REPLACE;
174 case GL_MODULATE: return MODE_MODULATE;
175 case GL_ADD: return MODE_ADD;
176 case GL_ADD_SIGNED: return MODE_ADD_SIGNED;
177 case GL_INTERPOLATE: return MODE_INTERPOLATE;
178 case GL_SUBTRACT: return MODE_SUBTRACT;
179 case GL_DOT3_RGB: return MODE_DOT3_RGB;
180 case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT;
181 case GL_DOT3_RGBA: return MODE_DOT3_RGBA;
182 case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT;
183 case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI;
184 case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI;
185 case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI;
186 default: return MODE_UNKNOWN;
187 }
188}
189
190#define TEXTURE_UNKNOWN_INDEX 7
Brian Paule00ac112005-09-15 05:00:45 +0000191static GLuint translate_tex_src_bit( GLbitfield bit )
Keith Whitwellce721142005-07-11 10:10:38 +0000192{
193 switch (bit) {
194 case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;
195 case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX;
196 case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX;
197 case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX;
198 case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX;
199 default: return TEXTURE_UNKNOWN_INDEX;
200 }
201}
202
Brian Paul22db5352005-11-19 23:45:10 +0000203/**
204 * Examine current texture environment state and generate a unique
205 * key to identify it.
206 */
Keith Whitwell8065c122006-05-22 16:09:27 +0000207static void make_state_key( GLcontext *ctx, struct state_key *key )
Keith Whitwellce721142005-07-11 10:10:38 +0000208{
Keith Whitwellce721142005-07-11 10:10:38 +0000209 GLuint i, j;
210
Keith Whitwell8065c122006-05-22 16:09:27 +0000211 memset(key, 0, sizeof(*key));
212
Keith Whitwellce721142005-07-11 10:10:38 +0000213 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
Brian Pauld9736db2006-05-23 02:44:46 +0000214 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
Roland Scheideggerbf4a0fa2008-02-15 17:26:06 +0100215
216 if (!texUnit->_ReallyEnabled || !texUnit->Enabled)
Keith Whitwellce721142005-07-11 10:10:38 +0000217 continue;
218
219 key->unit[i].enabled = 1;
220 key->enabled_units |= (1<<i);
221
222 key->unit[i].source_index =
223 translate_tex_src_bit(texUnit->_ReallyEnabled);
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200224 key->unit[i].shadow = texUnit->_Current->CompareMode == GL_COMPARE_R_TO_TEXTURE;
Keith Whitwellce721142005-07-11 10:10:38 +0000225
226 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
227 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
228
229 key->unit[i].ModeRGB =
230 translate_mode(texUnit->_CurrentCombine->ModeRGB);
231 key->unit[i].ModeA =
232 translate_mode(texUnit->_CurrentCombine->ModeA);
233
234 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
Keith Whitwell64da1612006-05-22 14:30:58 +0000235 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftA;
Keith Whitwellce721142005-07-11 10:10:38 +0000236
237 for (j=0;j<3;j++) {
238 key->unit[i].OptRGB[j].Operand =
239 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
240 key->unit[i].OptA[j].Operand =
241 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
242 key->unit[i].OptRGB[j].Source =
243 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
244 key->unit[i].OptA[j].Source =
245 translate_source(texUnit->_CurrentCombine->SourceA[j]);
246 }
247 }
248
249 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
250 key->separate_specular = 1;
251
252 if (ctx->Fog.Enabled) {
253 key->fog_enabled = 1;
254 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
255 }
Keith Whitwellce721142005-07-11 10:10:38 +0000256}
257
Keith Whitwell15e75e02005-04-29 15:11:39 +0000258/* Use uregs to represent registers internally, translate to Mesa's
259 * expected formats on emit.
260 *
261 * NOTE: These are passed by value extensively in this file rather
262 * than as usual by pointer reference. If this disturbs you, try
263 * remembering they are just 32bits in size.
264 *
265 * GCC is smart enough to deal with these dword-sized structures in
266 * much the same way as if I had defined them as dwords and was using
267 * macros to access and set the fields. This is much nicer and easier
268 * to evolve.
269 */
270struct ureg {
271 GLuint file:4;
272 GLuint idx:8;
273 GLuint negatebase:1;
274 GLuint abs:1;
275 GLuint negateabs:1;
276 GLuint swz:12;
277 GLuint pad:5;
278};
279
Brian Paul13abf912006-04-13 19:17:13 +0000280static const struct ureg undef = {
Alan Hourihane8d972652006-08-10 13:12:00 +0000281 PROGRAM_UNDEFINED,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000282 ~0,
283 0,
284 0,
285 0,
286 0,
287 0
288};
289
Keith Whitwell15e75e02005-04-29 15:11:39 +0000290
Keith Whitwell15e75e02005-04-29 15:11:39 +0000291/* State used to build the fragment program:
292 */
293struct texenv_fragment_program {
Brian Paul122629f2006-07-20 16:49:57 +0000294 struct gl_fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000295 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000296 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000297
Brian Paulc8d17412005-12-14 03:06:16 +0000298 GLbitfield alu_temps; /* Track texture indirections, see spec. */
299 GLbitfield temps_output; /* Track texture indirections, see spec. */
300 GLbitfield temp_in_use; /* Tracks temporary regs which are in use. */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000301 GLboolean error;
302
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000303 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000304 /* Reg containing each texture unit's sampled texture color,
305 * else undef.
306 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000307
308 struct ureg src_previous; /* Reg containing color from previous
309 * stage. May need to be decl'd.
310 */
311
312 GLuint last_tex_stage; /* Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000313
314 struct ureg half;
315 struct ureg one;
316 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000317};
318
319
320
321static struct ureg make_ureg(GLuint file, GLuint idx)
322{
323 struct ureg reg;
324 reg.file = file;
325 reg.idx = idx;
326 reg.negatebase = 0;
327 reg.abs = 0;
328 reg.negateabs = 0;
329 reg.swz = SWIZZLE_NOOP;
330 reg.pad = 0;
331 return reg;
332}
333
334static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
335{
336 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
337 GET_SWZ(reg.swz, y),
338 GET_SWZ(reg.swz, z),
339 GET_SWZ(reg.swz, w));
340
341 return reg;
342}
343
344static struct ureg swizzle1( struct ureg reg, int x )
345{
346 return swizzle(reg, x, x, x, x);
347}
348
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000349static struct ureg negate( struct ureg reg )
350{
351 reg.negatebase ^= 1;
352 return reg;
353}
354
Keith Whitwell15e75e02005-04-29 15:11:39 +0000355static GLboolean is_undef( struct ureg reg )
356{
Alan Hourihane8d972652006-08-10 13:12:00 +0000357 return reg.file == PROGRAM_UNDEFINED;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000358}
359
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000360
Keith Whitwell15e75e02005-04-29 15:11:39 +0000361static struct ureg get_temp( struct texenv_fragment_program *p )
362{
Brian Paul13abf912006-04-13 19:17:13 +0000363 GLint bit;
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000364
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000365 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000366 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000367 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000368
369 /* Then any unused temporary:
370 */
371 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000372 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000373
Keith Whitwell15e75e02005-04-29 15:11:39 +0000374 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000375 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000376 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000377 }
378
Brian Paul13abf912006-04-13 19:17:13 +0000379 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000380 p->program->Base.NumTemporaries = bit;
381
Keith Whitwell93cd9232005-05-11 08:30:23 +0000382 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000383 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
384}
385
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000386static struct ureg get_tex_temp( struct texenv_fragment_program *p )
387{
388 int bit;
389
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000390 /* First try to find availble temp not previously used (to avoid
391 * starting a new texture indirection). According to the spec, the
392 * ~p->temps_output isn't necessary, but will keep it there for
393 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000394 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000395 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000396
397 /* Then any unused temporary:
398 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000399 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000400 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000401
402 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000403 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000404 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000405 }
406
Brian Paul13abf912006-04-13 19:17:13 +0000407 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000408 p->program->Base.NumTemporaries = bit;
409
Keith Whitwell93cd9232005-05-11 08:30:23 +0000410 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000411 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
412}
413
Keith Whitwell15e75e02005-04-29 15:11:39 +0000414
415static void release_temps( struct texenv_fragment_program *p )
416{
Brian Paul05051032005-11-01 04:36:33 +0000417 GLuint max_temp = p->ctx->Const.FragmentProgram.MaxTemps;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000418
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000419 /* KW: To support tex_env_crossbar, don't release the registers in
420 * temps_output.
421 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000422 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000423 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000424 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000425 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000426}
427
428
Brian9fe3e2e2007-02-23 11:44:14 -0700429static struct ureg register_param5( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000430 GLint s0,
431 GLint s1,
432 GLint s2,
433 GLint s3,
Brian9fe3e2e2007-02-23 11:44:14 -0700434 GLint s4)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000435{
Brian9fe3e2e2007-02-23 11:44:14 -0700436 gl_state_index tokens[STATE_LENGTH];
Keith Whitwell47b29f52005-05-04 11:44:44 +0000437 GLuint idx;
438 tokens[0] = s0;
439 tokens[1] = s1;
440 tokens[2] = s2;
441 tokens[3] = s3;
442 tokens[4] = s4;
Brian Paulde997602005-11-12 17:53:14 +0000443 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000444 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000445}
446
Keith Whitwell47b29f52005-05-04 11:44:44 +0000447
Brian9fe3e2e2007-02-23 11:44:14 -0700448#define register_param1(p,s0) register_param5(p,s0,0,0,0,0)
449#define register_param2(p,s0,s1) register_param5(p,s0,s1,0,0,0)
450#define register_param3(p,s0,s1,s2) register_param5(p,s0,s1,s2,0,0)
451#define register_param4(p,s0,s1,s2,s3) register_param5(p,s0,s1,s2,s3,0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000452
453
454static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
455{
Brian Paulde997602005-11-12 17:53:14 +0000456 p->program->Base.InputsRead |= (1 << input);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000457 return make_ureg(PROGRAM_INPUT, input);
458}
459
460
Brian Paul7e807512005-11-05 17:10:45 +0000461static void emit_arg( struct prog_src_register *reg,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000462 struct ureg ureg )
463{
464 reg->File = ureg.file;
465 reg->Index = ureg.idx;
466 reg->Swizzle = ureg.swz;
Keith Whitwellf2802c42005-10-07 09:55:26 +0000467 reg->NegateBase = ureg.negatebase ? 0xf : 0x0;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000468 reg->Abs = ureg.abs;
469 reg->NegateAbs = ureg.negateabs;
470}
471
Brian Paul7e807512005-11-05 17:10:45 +0000472static void emit_dst( struct prog_dst_register *dst,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000473 struct ureg ureg, GLuint mask )
474{
475 dst->File = ureg.file;
476 dst->Index = ureg.idx;
477 dst->WriteMask = mask;
Brianc9d495c2007-10-23 10:55:24 -0600478 dst->CondMask = COND_TR; /* always pass cond test */
479 dst->CondSwizzle = SWIZZLE_NOOP;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000480}
481
Brian Paul7e807512005-11-05 17:10:45 +0000482static struct prog_instruction *
Keith Whitwell15e75e02005-04-29 15:11:39 +0000483emit_op(struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000484 enum prog_opcode op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000485 struct ureg dest,
486 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000487 GLboolean saturate,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000488 struct ureg src0,
489 struct ureg src1,
490 struct ureg src2 )
491{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000492 GLuint nr = p->program->Base.NumInstructions++;
Brian Paulde997602005-11-12 17:53:14 +0000493 struct prog_instruction *inst = &p->program->Base.Instructions[nr];
Brian2a8e9bb2007-10-23 10:24:53 -0600494
495 assert(nr < MAX_INSTRUCTIONS);
496
Brian Pauld6272e02006-10-29 18:03:16 +0000497 _mesa_init_instructions(inst, 1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000498 inst->Opcode = op;
499
Keith Whitwell47b29f52005-05-04 11:44:44 +0000500 emit_arg( &inst->SrcReg[0], src0 );
501 emit_arg( &inst->SrcReg[1], src1 );
502 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000503
Brian Paule31ac052005-11-20 17:52:40 +0000504 inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000505
506 emit_dst( &inst->DstReg, dest, mask );
507
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000508 /* Accounting for indirection tracking:
509 */
510 if (dest.file == PROGRAM_TEMPORARY)
511 p->temps_output |= 1 << dest.idx;
512
Keith Whitwell15e75e02005-04-29 15:11:39 +0000513 return inst;
514}
515
516
517static struct ureg emit_arith( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000518 enum prog_opcode op,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000519 struct ureg dest,
520 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000521 GLboolean saturate,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000522 struct ureg src0,
523 struct ureg src1,
524 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000525{
526 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
527
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000528 /* Accounting for indirection tracking:
529 */
530 if (src0.file == PROGRAM_TEMPORARY)
531 p->alu_temps |= 1 << src0.idx;
532
533 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
534 p->alu_temps |= 1 << src1.idx;
535
536 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
537 p->alu_temps |= 1 << src2.idx;
538
539 if (dest.file == PROGRAM_TEMPORARY)
540 p->alu_temps |= 1 << dest.idx;
541
Brian21f99792007-01-09 11:00:21 -0700542 p->program->Base.NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000543 return dest;
544}
545
546static struct ureg emit_texld( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000547 enum prog_opcode op,
Keith Whitwellce721142005-07-11 10:10:38 +0000548 struct ureg dest,
549 GLuint destmask,
550 GLuint tex_unit,
551 GLuint tex_idx,
552 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000553{
Brian Paul7e807512005-11-05 17:10:45 +0000554 struct prog_instruction *inst = emit_op( p, op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000555 dest, destmask,
Brian Paul22db5352005-11-19 23:45:10 +0000556 GL_FALSE, /* don't saturate? */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000557 coord, /* arg 0? */
558 undef,
559 undef);
560
Brian Paul7e807512005-11-05 17:10:45 +0000561 inst->TexSrcTarget = tex_idx;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000562 inst->TexSrcUnit = tex_unit;
563
Brian21f99792007-01-09 11:00:21 -0700564 p->program->Base.NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000565
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000566 /* Is this a texture indirection?
567 */
568 if ((coord.file == PROGRAM_TEMPORARY &&
569 (p->temps_output & (1<<coord.idx))) ||
570 (dest.file == PROGRAM_TEMPORARY &&
571 (p->alu_temps & (1<<dest.idx)))) {
Brian21f99792007-01-09 11:00:21 -0700572 p->program->Base.NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000573 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000574 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000575 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000576 }
577
578 return dest;
579}
580
581
Keith Whitwell47b29f52005-05-04 11:44:44 +0000582static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000583 GLfloat s0,
584 GLfloat s1,
585 GLfloat s2,
586 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000587{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000588 GLfloat values[4];
Briana90046f2006-12-15 10:07:26 -0700589 GLuint idx, swizzle;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000590 values[0] = s0;
591 values[1] = s1;
592 values[2] = s2;
593 values[3] = s3;
Briana90046f2006-12-15 10:07:26 -0700594 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values, 4,
595 &swizzle );
596 ASSERT(swizzle == SWIZZLE_NOOP);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000597 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000598}
599
Keith Whitwelle4902422005-05-11 15:16:35 +0000600#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000601#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
602#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
603#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000604
605
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000606static struct ureg get_one( struct texenv_fragment_program *p )
607{
608 if (is_undef(p->one))
609 p->one = register_scalar_const(p, 1.0);
610 return p->one;
611}
612
613static struct ureg get_half( struct texenv_fragment_program *p )
614{
615 if (is_undef(p->half))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000616 p->half = register_scalar_const(p, 0.5);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000617 return p->half;
618}
619
620static struct ureg get_zero( struct texenv_fragment_program *p )
621{
622 if (is_undef(p->zero))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000623 p->zero = register_scalar_const(p, 0.0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000624 return p->zero;
625}
626
Keith Whitwell15e75e02005-04-29 15:11:39 +0000627
Keith Whitwell15e75e02005-04-29 15:11:39 +0000628static void program_error( struct texenv_fragment_program *p, const char *msg )
629{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000630 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000631 p->error = 1;
632}
633
Keith Whitwell15e75e02005-04-29 15:11:39 +0000634static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000635 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000636{
637 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000638 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000639 assert(!is_undef(p->src_texture[unit]));
640 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000641
Keith Whitwellce721142005-07-11 10:10:38 +0000642 case SRC_TEXTURE0:
643 case SRC_TEXTURE1:
644 case SRC_TEXTURE2:
645 case SRC_TEXTURE3:
646 case SRC_TEXTURE4:
647 case SRC_TEXTURE5:
648 case SRC_TEXTURE6:
649 case SRC_TEXTURE7:
650 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
651 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000652
Keith Whitwellce721142005-07-11 10:10:38 +0000653 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000654 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000655
Keith Whitwellce721142005-07-11 10:10:38 +0000656 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000657 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000658
Keith Whitwellce721142005-07-11 10:10:38 +0000659 case SRC_PREVIOUS:
660 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000661 if (is_undef(p->src_previous))
662 return register_input(p, FRAG_ATTRIB_COL0);
663 else
664 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000665 }
666}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000667
Keith Whitwell15e75e02005-04-29 15:11:39 +0000668static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000669 GLuint mask,
670 GLuint unit,
671 GLuint source,
672 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000673{
674 struct ureg arg, src, one;
675
676 src = get_source(p, source, unit);
677
678 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000679 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000680 /* Get unused tmp,
681 * Emit tmp = 1.0 - arg.xyzw
682 */
683 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000684 one = get_one( p );
Brian Paul7e807512005-11-05 17:10:45 +0000685 return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000686
Keith Whitwellce721142005-07-11 10:10:38 +0000687 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000688 if (mask == WRITEMASK_W)
689 return src;
690 else
Brian Paul22db5352005-11-19 23:45:10 +0000691 return swizzle1( src, SWIZZLE_W );
Keith Whitwellce721142005-07-11 10:10:38 +0000692 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000693 /* Get unused tmp,
694 * Emit tmp = 1.0 - arg.wwww
695 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000696 arg = get_temp(p);
697 one = get_one(p);
Brian Paul7e807512005-11-05 17:10:45 +0000698 return emit_arith(p, OPCODE_SUB, arg, mask, 0,
Brian Paul22db5352005-11-19 23:45:10 +0000699 one, swizzle1(src, SWIZZLE_W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000700 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000701 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000702 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000703 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000704 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000705 default:
706 return src;
707 }
708}
709
Keith Whitwellce721142005-07-11 10:10:38 +0000710static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000711{
Brian Paul22db5352005-11-19 23:45:10 +0000712 GLuint i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000713
714 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000715 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000716 return GL_FALSE;
717
Keith Whitwellce721142005-07-11 10:10:38 +0000718 switch(key->unit[unit].OptA[i].Operand) {
719 case OPR_SRC_ALPHA:
720 switch(key->unit[unit].OptRGB[i].Operand) {
721 case OPR_SRC_COLOR:
722 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000723 break;
724 default:
725 return GL_FALSE;
726 }
727 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000728 case OPR_ONE_MINUS_SRC_ALPHA:
729 switch(key->unit[unit].OptRGB[i].Operand) {
730 case OPR_ONE_MINUS_SRC_COLOR:
731 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000732 break;
733 default:
734 return GL_FALSE;
735 }
736 break;
737 default:
738 return GL_FALSE; /* impossible */
739 }
740 }
741
742 return GL_TRUE;
743}
744
Keith Whitwell15e75e02005-04-29 15:11:39 +0000745static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000746 struct ureg dest,
747 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000748 GLboolean saturate,
Keith Whitwellce721142005-07-11 10:10:38 +0000749 GLuint unit,
750 GLuint nr,
751 GLuint mode,
Brian Pauld9736db2006-05-23 02:44:46 +0000752 const struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000753{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000754 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000755 struct ureg tmp, half;
Brian Paul22db5352005-11-19 23:45:10 +0000756 GLuint i;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000757
Brian Paul00630842005-12-12 15:27:55 +0000758 tmp = undef; /* silence warning (bug 5318) */
759
Keith Whitwell15e75e02005-04-29 15:11:39 +0000760 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000761 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000762
763 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000764 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000765 if (mask == WRITEMASK_XYZW && !saturate)
766 return src[0];
767 else
Brian Paul7e807512005-11-05 17:10:45 +0000768 return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000769 case MODE_MODULATE:
Brian Paul7e807512005-11-05 17:10:45 +0000770 return emit_arith( p, OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000771 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000772 case MODE_ADD:
Brian Paul7e807512005-11-05 17:10:45 +0000773 return emit_arith( p, OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000774 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000775 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000776 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000777 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000778 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000779 half = get_half(p);
Jerome Glisse99da2d32006-01-24 23:04:51 +0000780 tmp = get_temp( p );
Brian Paul7e807512005-11-05 17:10:45 +0000781 emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
782 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000783 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000784 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000785 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
786 */
Brian Paul7e807512005-11-05 17:10:45 +0000787 return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000788
Keith Whitwellce721142005-07-11 10:10:38 +0000789 case MODE_SUBTRACT:
Brian Paul7e807512005-11-05 17:10:45 +0000790 return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000791
Keith Whitwellce721142005-07-11 10:10:38 +0000792 case MODE_DOT3_RGBA:
793 case MODE_DOT3_RGBA_EXT:
794 case MODE_DOT3_RGB_EXT:
795 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000796 struct ureg tmp0 = get_temp( p );
797 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000798 struct ureg neg1 = register_scalar_const(p, -1);
799 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000800
801 /* tmp0 = 2*src0 - 1
802 * tmp1 = 2*src1 - 1
803 *
804 * dst = tmp0 dot3 tmp1
805 */
Brian Paul7e807512005-11-05 17:10:45 +0000806 emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000807 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000808
Brian Paulaa206952005-09-16 18:14:24 +0000809 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000810 tmp1 = tmp0;
811 else
Brian Paul7e807512005-11-05 17:10:45 +0000812 emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000813 two, src[1], neg1);
Brian Paul7e807512005-11-05 17:10:45 +0000814 emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000815 return dest;
816 }
Keith Whitwellce721142005-07-11 10:10:38 +0000817 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000818 /* Arg0 * Arg2 + Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000819 return emit_arith( p, OPCODE_MAD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000820 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000821 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000822 /* Arg0 * Arg2 + Arg1 - 0.5 */
823 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000824 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000825 emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
826 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000827 return dest;
828 }
Keith Whitwellce721142005-07-11 10:10:38 +0000829 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000830 /* Arg0 * Arg2 - Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000831 emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000832 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000833 default:
834 return src[0];
835 }
836}
837
Keith Whitwell15e75e02005-04-29 15:11:39 +0000838
Brian Paul22db5352005-11-19 23:45:10 +0000839/**
840 * Generate instructions for one texture unit's env/combiner mode.
841 */
842static struct ureg
843emit_texenv(struct texenv_fragment_program *p, GLuint unit)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000844{
Keith Whitwellce721142005-07-11 10:10:38 +0000845 struct state_key *key = p->state;
Brian Paul22db5352005-11-19 23:45:10 +0000846 GLboolean saturate = (unit < p->last_tex_stage);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000847 GLuint rgb_shift, alpha_shift;
848 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000849 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000850
Keith Whitwellce721142005-07-11 10:10:38 +0000851 if (!key->unit[unit].enabled) {
852 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000853 }
Keith Whitwellce721142005-07-11 10:10:38 +0000854
855 switch (key->unit[unit].ModeRGB) {
856 case MODE_DOT3_RGB_EXT:
857 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000858 rgb_shift = 0;
859 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000860 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000861 alpha_shift = 0;
862 rgb_shift = 0;
863 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000864 default:
Keith Whitwellce721142005-07-11 10:10:38 +0000865 rgb_shift = key->unit[unit].ScaleShiftRGB;
866 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000867 break;
868 }
Keith Whitwellce721142005-07-11 10:10:38 +0000869
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000870 /* If this is the very last calculation, emit direct to output reg:
871 */
Keith Whitwellce721142005-07-11 10:10:38 +0000872 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000873 unit != p->last_tex_stage ||
874 alpha_shift ||
875 rgb_shift)
876 dest = get_temp( p );
877 else
Brian Paul90ebb582005-11-02 18:06:12 +0000878 dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000879
880 /* Emit the RGB and A combine ops
881 */
Keith Whitwellce721142005-07-11 10:10:38 +0000882 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
883 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000884 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
885 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000886 key->unit[unit].NumArgsRGB,
887 key->unit[unit].ModeRGB,
888 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000889 }
Keith Whitwellce721142005-07-11 10:10:38 +0000890 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
Roland Scheidegger9a451762007-07-03 14:27:41 +0200891 key->unit[unit].ModeRGB == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000892
893 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
894 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000895 key->unit[unit].NumArgsRGB,
896 key->unit[unit].ModeRGB,
897 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000898 }
899 else {
900 /* Need to do something to stop from re-emitting identical
901 * argument calculations here:
902 */
903 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
904 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000905 key->unit[unit].NumArgsRGB,
906 key->unit[unit].ModeRGB,
907 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000908 out = emit_combine( p, dest, WRITEMASK_W, saturate,
909 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000910 key->unit[unit].NumArgsA,
911 key->unit[unit].ModeA,
912 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000913 }
914
915 /* Deal with the final shift:
916 */
917 if (alpha_shift || rgb_shift) {
918 if (rgb_shift == alpha_shift) {
José Fonseca452a5922008-05-31 18:14:09 +0900919 shift = register_scalar_const(p, (GLfloat)(1<<rgb_shift));
Keith Whitwell15e75e02005-04-29 15:11:39 +0000920 }
921 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000922 shift = register_const4f(p,
José Fonseca452a5922008-05-31 18:14:09 +0900923 (GLfloat)(1<<rgb_shift),
924 (GLfloat)(1<<rgb_shift),
925 (GLfloat)(1<<rgb_shift),
926 (GLfloat)(1<<alpha_shift));
Keith Whitwell15e75e02005-04-29 15:11:39 +0000927 }
Brian Paul7e807512005-11-05 17:10:45 +0000928 return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000929 saturate, out, shift, undef );
930 }
931 else
932 return out;
933}
934
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000935
Brian Paul22db5352005-11-19 23:45:10 +0000936/**
937 * Generate instruction for getting a texture source term.
938 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000939static void load_texture( struct texenv_fragment_program *p, GLuint unit )
940{
941 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +0000942 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000943 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
944 struct ureg tmp = get_tex_temp( p );
945
Brian Paulbfb5ea32005-07-19 18:20:04 +0000946 if (dim == TEXTURE_UNKNOWN_INDEX)
947 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +0000948
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000949 /* TODO: Use D0_MASK_XY where possible.
950 */
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200951 if (p->state->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +0000952 p->src_texture[unit] = emit_texld( p, OPCODE_TXP,
953 tmp, WRITEMASK_XYZW,
954 unit, dim, texcoord );
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200955 if (p->state->unit[unit].shadow)
956 p->program->Base.ShadowSamplers |= 1 << unit;
957 } else
Aapo Tahkolab8915342006-03-28 10:26:34 +0000958 p->src_texture[unit] = get_zero(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000959 }
960}
961
Keith Whitwell241b6b72005-05-23 09:50:34 +0000962static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000963 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000964{
965 switch (src) {
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000966 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000967 load_texture(p, unit);
968 break;
969
Keith Whitwellce721142005-07-11 10:10:38 +0000970 case SRC_TEXTURE0:
971 case SRC_TEXTURE1:
972 case SRC_TEXTURE2:
973 case SRC_TEXTURE3:
974 case SRC_TEXTURE4:
975 case SRC_TEXTURE5:
976 case SRC_TEXTURE6:
977 case SRC_TEXTURE7:
Keith Whitwellce721142005-07-11 10:10:38 +0000978 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000979 break;
980
981 default:
982 break;
983 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000984
985 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000986}
987
Brian Paul22db5352005-11-19 23:45:10 +0000988
989/**
990 * Generate instructions for loading all texture source terms.
991 */
992static GLboolean
993load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000994{
Keith Whitwellce721142005-07-11 10:10:38 +0000995 struct state_key *key = p->state;
Aapo Tahkolab8915342006-03-28 10:26:34 +0000996 GLuint i;
997
998 for (i = 0; i < key->unit[unit].NumArgsRGB; i++) {
999 load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001000 }
Aapo Tahkolab8915342006-03-28 10:26:34 +00001001
1002 for (i = 0; i < key->unit[unit].NumArgsA; i++) {
1003 load_texenv_source( p, key->unit[unit].OptA[i].Source, unit );
1004 }
1005
Keith Whitwell241b6b72005-05-23 09:50:34 +00001006 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001007}
1008
Brian Paul22db5352005-11-19 23:45:10 +00001009
1010/**
1011 * Generate a new fragment program which implements the context's
1012 * current texture env/combine mode.
1013 */
1014static void
Brian Paule998c342006-10-29 21:17:18 +00001015create_new_program(GLcontext *ctx, struct state_key *key,
Brian Paul122629f2006-07-20 16:49:57 +00001016 struct gl_fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001017{
Brian Paule998c342006-10-29 21:17:18 +00001018 struct prog_instruction instBuffer[MAX_INSTRUCTIONS];
Keith Whitwell15e75e02005-04-29 15:11:39 +00001019 struct texenv_fragment_program p;
1020 GLuint unit;
1021 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +00001022
Keith Whitwelle4902422005-05-11 15:16:35 +00001023 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +00001024 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +00001025 p.state = key;
1026 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001027
Brian Paule998c342006-10-29 21:17:18 +00001028 /* During code generation, use locally-allocated instruction buffer,
1029 * then alloc dynamic storage below.
1030 */
1031 p.program->Base.Instructions = instBuffer;
Keith Whitwell276330b2005-05-09 17:58:13 +00001032 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Brian21f99792007-01-09 11:00:21 -07001033 p.program->Base.NumTexIndirections = 1; /* correct? */
1034 p.program->Base.NumTexInstructions = 0;
1035 p.program->Base.NumAluInstructions = 0;
Brian1240eb22007-03-22 08:50:20 -06001036 p.program->Base.String = NULL;
Keith Whitwell9ca88152005-05-10 09:56:02 +00001037 p.program->Base.NumInstructions =
Brian Paule998c342006-10-29 21:17:18 +00001038 p.program->Base.NumTemporaries =
1039 p.program->Base.NumParameters =
1040 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00001041 p.program->Base.Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +00001042
Brian Paulde997602005-11-12 17:53:14 +00001043 p.program->Base.InputsRead = 0;
1044 p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001045
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001046 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1047 p.src_texture[unit] = undef;
1048
Keith Whitwell47b29f52005-05-04 11:44:44 +00001049 p.src_previous = undef;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001050 p.half = undef;
1051 p.zero = undef;
1052 p.one = undef;
1053
Keith Whitwell15e75e02005-04-29 15:11:39 +00001054 p.last_tex_stage = 0;
Keith Whitwell93cd9232005-05-11 08:30:23 +00001055 release_temps(&p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001056
Keith Whitwellce721142005-07-11 10:10:38 +00001057 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001058 /* First pass - to support texture_env_crossbar, first identify
1059 * all referenced texture sources and emit texld instructions
1060 * for each:
1061 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001062 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001063 if (key->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +00001064 load_texunit_sources( &p, unit );
1065 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001066 }
1067
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001068 /* Second pass - emit combine instructions to build final color:
1069 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001070 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001071 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001072 p.src_previous = emit_texenv( &p, unit );
Keith Whitwell93cd9232005-05-11 08:30:23 +00001073 release_temps(&p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001074 }
1075 }
1076
Keith Whitwellce721142005-07-11 10:10:38 +00001077 cf = get_source( &p, SRC_PREVIOUS, 0 );
Brian Paul90ebb582005-11-02 18:06:12 +00001078 out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001079
Keith Whitwellce721142005-07-11 10:10:38 +00001080 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001081 /* Emit specular add.
1082 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001083 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Brian Paul7e807512005-11-05 17:10:45 +00001084 emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
1085 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001086 }
Brian Paulaa206952005-09-16 18:14:24 +00001087 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001088 /* Will wind up in here if no texture enabled or a couple of
1089 * other scenarios (GL_REPLACE for instance).
1090 */
Brian Paul7e807512005-11-05 17:10:45 +00001091 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001092 }
1093
Keith Whitwell47b29f52005-05-04 11:44:44 +00001094 /* Finish up:
1095 */
Brian Paul7e807512005-11-05 17:10:45 +00001096 emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001097
Keith Whitwellce721142005-07-11 10:10:38 +00001098 if (key->fog_enabled) {
1099 /* Pull fog mode from GLcontext, the value in the state key is
1100 * a reduced value and not what is expected in FogOption
1101 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001102 p.program->FogOption = ctx->Fog.Mode;
Brian19d77d62007-09-18 19:29:26 -06001103 p.program->Base.InputsRead |= FRAG_BIT_FOGC; /* XXX new */
Keith Whitwellce721142005-07-11 10:10:38 +00001104 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001105 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001106
Brian21f99792007-01-09 11:00:21 -07001107 if (p.program->Base.NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001108 program_error(&p, "Exceeded max nr indirect texture lookups");
1109
Brian21f99792007-01-09 11:00:21 -07001110 if (p.program->Base.NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001111 program_error(&p, "Exceeded max TEX instructions");
1112
Brian21f99792007-01-09 11:00:21 -07001113 if (p.program->Base.NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001114 program_error(&p, "Exceeded max ALU instructions");
1115
Brian Paul5d7b49f2005-11-19 23:12:20 +00001116 ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS);
Keith Whitwell8b88f622005-05-10 11:39:50 +00001117
Brian Paule998c342006-10-29 21:17:18 +00001118 /* Allocate final instruction array */
Brianc81cce72007-09-25 15:18:51 -06001119 p.program->Base.Instructions
1120 = _mesa_alloc_instructions(p.program->Base.NumInstructions);
1121 if (!p.program->Base.Instructions) {
Brian Paule998c342006-10-29 21:17:18 +00001122 _mesa_error(ctx, GL_OUT_OF_MEMORY,
1123 "generating tex env program");
1124 return;
1125 }
Brianc81cce72007-09-25 15:18:51 -06001126 _mesa_copy_instructions(p.program->Base.Instructions, instBuffer,
1127 p.program->Base.NumInstructions);
1128
1129 if (p.program->FogOption) {
1130 _mesa_append_fog_code(ctx, p.program);
1131 p.program->FogOption = GL_NONE;
1132 }
1133
Brian Paule998c342006-10-29 21:17:18 +00001134
Keith Whitwelldbeea252005-05-10 13:57:50 +00001135 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001136 */
Brian Paule998c342006-10-29 21:17:18 +00001137 if (ctx->Driver.ProgramStringNotify) {
1138 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1139 &p.program->Base );
1140 }
Keith Whitwelldbeea252005-05-10 13:57:50 +00001141
Brian Paule998c342006-10-29 21:17:18 +00001142 if (DISASSEM) {
1143 _mesa_print_program(&p.program->Base);
1144 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001145 }
Keith Whitwell15e75e02005-04-29 15:11:39 +00001146}
1147
Brian Paul5d7b49f2005-11-19 23:12:20 +00001148
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001149/**
1150 * Return a fragment program which implements the current
1151 * fixed-function texture, fog and color-sum operations.
1152 */
1153struct gl_fragment_program *
1154_mesa_get_fixed_func_fragment_program(GLcontext *ctx)
Keith Whitwellce721142005-07-11 10:10:38 +00001155{
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001156 struct gl_fragment_program *prog;
1157 struct state_key key;
1158
1159 make_state_key(ctx, &key);
1160
1161 prog = (struct gl_fragment_program *)
1162 _mesa_search_program_cache(ctx->FragmentProgram.Cache,
1163 &key, sizeof(key));
Keith Whitwellce721142005-07-11 10:10:38 +00001164
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001165 if (!prog) {
1166 prog = (struct gl_fragment_program *)
1167 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
1168
1169 create_new_program(ctx, &key, prog);
1170
1171 _mesa_program_cache_insert(ctx, ctx->FragmentProgram.Cache,
1172 &key, sizeof(key), &prog->Base);
Keith Whitwellce721142005-07-11 10:10:38 +00001173 }
1174
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001175 return prog;
Keith Whitwellce721142005-07-11 10:10:38 +00001176}
1177
Keith Whitwellce721142005-07-11 10:10:38 +00001178
Briana90046f2006-12-15 10:07:26 -07001179
1180/**
1181 * If _MaintainTexEnvProgram is set we'll generate a fragment program that
1182 * implements the current texture env/combine mode.
1183 * This function generates that program and puts it into effect.
1184 */
1185void
1186_mesa_UpdateTexEnvProgram( GLcontext *ctx )
Keith Whitwellce721142005-07-11 10:10:38 +00001187{
Brian Paul122629f2006-07-20 16:49:57 +00001188 const struct gl_fragment_program *prev = ctx->FragmentProgram._Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001189
Briana90046f2006-12-15 10:07:26 -07001190 ASSERT(ctx->FragmentProgram._MaintainTexEnvProgram);
1191
1192 /* If a conventional fragment program/shader isn't in effect... */
Brianefcfdbd2007-02-24 15:51:41 -07001193 if (!ctx->FragmentProgram._Enabled &&
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001194 (!ctx->Shader.CurrentProgram ||
1195 !ctx->Shader.CurrentProgram->FragmentProgram) )
1196 {
Brian Paul5b5c9312008-05-07 18:51:44 -06001197 struct gl_fragment_program *newProg;
1198
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001199 newProg = _mesa_get_fixed_func_fragment_program(ctx);
Brian Paul5b5c9312008-05-07 18:51:44 -06001200
1201 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current, newProg);
1202 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._TexEnvProgram, newProg);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001203 }
Keith Whitwellc3626a92005-11-01 17:25:49 +00001204
1205 /* Tell the driver about the change. Could define a new target for
1206 * this?
1207 */
Brian Paul5d7b49f2005-11-19 23:12:20 +00001208 if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) {
1209 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
Briana90046f2006-12-15 10:07:26 -07001210 (struct gl_program *) ctx->FragmentProgram._Current);
Brian Paul5d7b49f2005-11-19 23:12:20 +00001211 }
Keith Whitwellce721142005-07-11 10:10:38 +00001212}