blob: d360fa35c02201202ec3f79a9ba206957cbfa584 [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"
Brianfb3c41f2007-09-25 15:20:04 -060037#include "shader/programopt.h"
Keith Whitwell15e75e02005-04-29 15:11:39 +000038#include "texenvprogram.h"
39
Brian Paul5b5c9312008-05-07 18:51:44 -060040
41struct texenvprog_cache_item
42{
43 GLuint hash;
44 void *key;
45 struct gl_fragment_program *data;
46 struct texenvprog_cache_item *next;
47};
48
49
Brian Paule998c342006-10-29 21:17:18 +000050/**
Brian2a8e9bb2007-10-23 10:24:53 -060051 * This MAX is probably a bit generous, but that's OK. There can be
52 * up to four instructions per texture unit (TEX + 3 for combine),
53 * then there's fog and specular add.
Brian Paule998c342006-10-29 21:17:18 +000054 */
Brian2a8e9bb2007-10-23 10:24:53 -060055#define MAX_INSTRUCTIONS ((MAX_TEXTURE_UNITS * 4) + 12)
Keith Whitwell15e75e02005-04-29 15:11:39 +000056
Keith Whitwell269e3892005-05-12 10:28:43 +000057#define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)
Keith Whitwell15e75e02005-04-29 15:11:39 +000058
Keith Whitwellce721142005-07-11 10:10:38 +000059struct mode_opt {
Brian Paul5d7b49f2005-11-19 23:12:20 +000060 GLuint Source:4;
61 GLuint Operand:3;
Keith Whitwellce721142005-07-11 10:10:38 +000062};
63
64struct state_key {
Brian Paul5d7b49f2005-11-19 23:12:20 +000065 GLbitfield enabled_units;
66 GLuint separate_specular:1;
67 GLuint fog_enabled:1;
68 GLuint fog_mode:2;
Keith Whitwellce721142005-07-11 10:10:38 +000069
70 struct {
Brian Paul5d7b49f2005-11-19 23:12:20 +000071 GLuint enabled:1;
72 GLuint source_index:3; /* one of TEXTURE_1D/2D/3D/CUBE/RECT_INDEX */
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +020073 GLuint shadow:1;
Brian Paul5d7b49f2005-11-19 23:12:20 +000074 GLuint ScaleShiftRGB:2;
75 GLuint ScaleShiftA:2;
Keith Whitwellce721142005-07-11 10:10:38 +000076
Brian Paul5d7b49f2005-11-19 23:12:20 +000077 GLuint NumArgsRGB:2;
78 GLuint ModeRGB:4;
Keith Whitwellce721142005-07-11 10:10:38 +000079 struct mode_opt OptRGB[3];
80
Brian Paul5d7b49f2005-11-19 23:12:20 +000081 GLuint NumArgsA:2;
82 GLuint ModeA:4;
Keith Whitwellce721142005-07-11 10:10:38 +000083 struct mode_opt OptA[3];
84 } unit[8];
85};
86
87#define FOG_LINEAR 0
88#define FOG_EXP 1
89#define FOG_EXP2 2
90#define FOG_UNKNOWN 3
91
92static GLuint translate_fog_mode( GLenum mode )
93{
94 switch (mode) {
95 case GL_LINEAR: return FOG_LINEAR;
96 case GL_EXP: return FOG_EXP;
97 case GL_EXP2: return FOG_EXP2;
98 default: return FOG_UNKNOWN;
99 }
100}
101
102#define OPR_SRC_COLOR 0
103#define OPR_ONE_MINUS_SRC_COLOR 1
104#define OPR_SRC_ALPHA 2
105#define OPR_ONE_MINUS_SRC_ALPHA 3
106#define OPR_ZERO 4
107#define OPR_ONE 5
108#define OPR_UNKNOWN 7
109
110static GLuint translate_operand( GLenum operand )
111{
112 switch (operand) {
113 case GL_SRC_COLOR: return OPR_SRC_COLOR;
114 case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR;
115 case GL_SRC_ALPHA: return OPR_SRC_ALPHA;
116 case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA;
117 case GL_ZERO: return OPR_ZERO;
118 case GL_ONE: return OPR_ONE;
119 default: return OPR_UNKNOWN;
120 }
121}
122
123#define SRC_TEXTURE 0
124#define SRC_TEXTURE0 1
125#define SRC_TEXTURE1 2
126#define SRC_TEXTURE2 3
127#define SRC_TEXTURE3 4
128#define SRC_TEXTURE4 5
129#define SRC_TEXTURE5 6
130#define SRC_TEXTURE6 7
131#define SRC_TEXTURE7 8
132#define SRC_CONSTANT 9
133#define SRC_PRIMARY_COLOR 10
134#define SRC_PREVIOUS 11
135#define SRC_UNKNOWN 15
136
137static GLuint translate_source( GLenum src )
138{
139 switch (src) {
140 case GL_TEXTURE: return SRC_TEXTURE;
141 case GL_TEXTURE0:
142 case GL_TEXTURE1:
143 case GL_TEXTURE2:
144 case GL_TEXTURE3:
145 case GL_TEXTURE4:
146 case GL_TEXTURE5:
147 case GL_TEXTURE6:
148 case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0);
149 case GL_CONSTANT: return SRC_CONSTANT;
150 case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR;
151 case GL_PREVIOUS: return SRC_PREVIOUS;
152 default: return SRC_UNKNOWN;
153 }
154}
155
156#define MODE_REPLACE 0
157#define MODE_MODULATE 1
158#define MODE_ADD 2
159#define MODE_ADD_SIGNED 3
160#define MODE_INTERPOLATE 4
161#define MODE_SUBTRACT 5
162#define MODE_DOT3_RGB 6
163#define MODE_DOT3_RGB_EXT 7
164#define MODE_DOT3_RGBA 8
165#define MODE_DOT3_RGBA_EXT 9
166#define MODE_MODULATE_ADD_ATI 10
167#define MODE_MODULATE_SIGNED_ADD_ATI 11
168#define MODE_MODULATE_SUBTRACT_ATI 12
169#define MODE_UNKNOWN 15
170
171static GLuint translate_mode( GLenum mode )
172{
173 switch (mode) {
174 case GL_REPLACE: return MODE_REPLACE;
175 case GL_MODULATE: return MODE_MODULATE;
176 case GL_ADD: return MODE_ADD;
177 case GL_ADD_SIGNED: return MODE_ADD_SIGNED;
178 case GL_INTERPOLATE: return MODE_INTERPOLATE;
179 case GL_SUBTRACT: return MODE_SUBTRACT;
180 case GL_DOT3_RGB: return MODE_DOT3_RGB;
181 case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT;
182 case GL_DOT3_RGBA: return MODE_DOT3_RGBA;
183 case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT;
184 case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI;
185 case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI;
186 case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI;
187 default: return MODE_UNKNOWN;
188 }
189}
190
191#define TEXTURE_UNKNOWN_INDEX 7
Brian Paule00ac112005-09-15 05:00:45 +0000192static GLuint translate_tex_src_bit( GLbitfield bit )
Keith Whitwellce721142005-07-11 10:10:38 +0000193{
194 switch (bit) {
195 case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;
196 case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX;
197 case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX;
198 case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX;
199 case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX;
200 default: return TEXTURE_UNKNOWN_INDEX;
201 }
202}
203
Brian Paul22db5352005-11-19 23:45:10 +0000204/**
205 * Examine current texture environment state and generate a unique
206 * key to identify it.
207 */
Keith Whitwell8065c122006-05-22 16:09:27 +0000208static void make_state_key( GLcontext *ctx, struct state_key *key )
Keith Whitwellce721142005-07-11 10:10:38 +0000209{
Keith Whitwellce721142005-07-11 10:10:38 +0000210 GLuint i, j;
211
Keith Whitwell8065c122006-05-22 16:09:27 +0000212 memset(key, 0, sizeof(*key));
213
Keith Whitwellce721142005-07-11 10:10:38 +0000214 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
Brian Pauld9736db2006-05-23 02:44:46 +0000215 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
Roland Scheideggerbf4a0fa2008-02-15 17:26:06 +0100216
217 if (!texUnit->_ReallyEnabled || !texUnit->Enabled)
Keith Whitwellce721142005-07-11 10:10:38 +0000218 continue;
219
220 key->unit[i].enabled = 1;
221 key->enabled_units |= (1<<i);
222
223 key->unit[i].source_index =
224 translate_tex_src_bit(texUnit->_ReallyEnabled);
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200225 key->unit[i].shadow = texUnit->_Current->CompareMode == GL_COMPARE_R_TO_TEXTURE;
Keith Whitwellce721142005-07-11 10:10:38 +0000226
227 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
228 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
229
230 key->unit[i].ModeRGB =
231 translate_mode(texUnit->_CurrentCombine->ModeRGB);
232 key->unit[i].ModeA =
233 translate_mode(texUnit->_CurrentCombine->ModeA);
234
235 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
Keith Whitwell64da1612006-05-22 14:30:58 +0000236 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftA;
Keith Whitwellce721142005-07-11 10:10:38 +0000237
238 for (j=0;j<3;j++) {
239 key->unit[i].OptRGB[j].Operand =
240 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
241 key->unit[i].OptA[j].Operand =
242 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
243 key->unit[i].OptRGB[j].Source =
244 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
245 key->unit[i].OptA[j].Source =
246 translate_source(texUnit->_CurrentCombine->SourceA[j]);
247 }
248 }
249
250 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
251 key->separate_specular = 1;
252
253 if (ctx->Fog.Enabled) {
254 key->fog_enabled = 1;
255 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
256 }
Keith Whitwellce721142005-07-11 10:10:38 +0000257}
258
Keith Whitwell15e75e02005-04-29 15:11:39 +0000259/* Use uregs to represent registers internally, translate to Mesa's
260 * expected formats on emit.
261 *
262 * NOTE: These are passed by value extensively in this file rather
263 * than as usual by pointer reference. If this disturbs you, try
264 * remembering they are just 32bits in size.
265 *
266 * GCC is smart enough to deal with these dword-sized structures in
267 * much the same way as if I had defined them as dwords and was using
268 * macros to access and set the fields. This is much nicer and easier
269 * to evolve.
270 */
271struct ureg {
272 GLuint file:4;
273 GLuint idx:8;
274 GLuint negatebase:1;
275 GLuint abs:1;
276 GLuint negateabs:1;
277 GLuint swz:12;
278 GLuint pad:5;
279};
280
Brian Paul13abf912006-04-13 19:17:13 +0000281static const struct ureg undef = {
Alan Hourihane8d972652006-08-10 13:12:00 +0000282 PROGRAM_UNDEFINED,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000283 ~0,
284 0,
285 0,
286 0,
287 0,
288 0
289};
290
Keith Whitwell15e75e02005-04-29 15:11:39 +0000291
Keith Whitwell15e75e02005-04-29 15:11:39 +0000292/* State used to build the fragment program:
293 */
294struct texenv_fragment_program {
Brian Paul122629f2006-07-20 16:49:57 +0000295 struct gl_fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000296 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000297 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000298
Brian Paulc8d17412005-12-14 03:06:16 +0000299 GLbitfield alu_temps; /* Track texture indirections, see spec. */
300 GLbitfield temps_output; /* Track texture indirections, see spec. */
301 GLbitfield temp_in_use; /* Tracks temporary regs which are in use. */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000302 GLboolean error;
303
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000304 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000305 /* Reg containing each texture unit's sampled texture color,
306 * else undef.
307 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000308
309 struct ureg src_previous; /* Reg containing color from previous
310 * stage. May need to be decl'd.
311 */
312
313 GLuint last_tex_stage; /* Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000314
315 struct ureg half;
316 struct ureg one;
317 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000318};
319
320
321
322static struct ureg make_ureg(GLuint file, GLuint idx)
323{
324 struct ureg reg;
325 reg.file = file;
326 reg.idx = idx;
327 reg.negatebase = 0;
328 reg.abs = 0;
329 reg.negateabs = 0;
330 reg.swz = SWIZZLE_NOOP;
331 reg.pad = 0;
332 return reg;
333}
334
335static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
336{
337 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
338 GET_SWZ(reg.swz, y),
339 GET_SWZ(reg.swz, z),
340 GET_SWZ(reg.swz, w));
341
342 return reg;
343}
344
345static struct ureg swizzle1( struct ureg reg, int x )
346{
347 return swizzle(reg, x, x, x, x);
348}
349
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000350static struct ureg negate( struct ureg reg )
351{
352 reg.negatebase ^= 1;
353 return reg;
354}
355
Keith Whitwell15e75e02005-04-29 15:11:39 +0000356static GLboolean is_undef( struct ureg reg )
357{
Alan Hourihane8d972652006-08-10 13:12:00 +0000358 return reg.file == PROGRAM_UNDEFINED;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000359}
360
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000361
Keith Whitwell15e75e02005-04-29 15:11:39 +0000362static struct ureg get_temp( struct texenv_fragment_program *p )
363{
Brian Paul13abf912006-04-13 19:17:13 +0000364 GLint bit;
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000365
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000366 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000367 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000368 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000369
370 /* Then any unused temporary:
371 */
372 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000373 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000374
Keith Whitwell15e75e02005-04-29 15:11:39 +0000375 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000376 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000377 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000378 }
379
Brian Paul13abf912006-04-13 19:17:13 +0000380 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000381 p->program->Base.NumTemporaries = bit;
382
Keith Whitwell93cd9232005-05-11 08:30:23 +0000383 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000384 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
385}
386
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000387static struct ureg get_tex_temp( struct texenv_fragment_program *p )
388{
389 int bit;
390
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000391 /* First try to find availble temp not previously used (to avoid
392 * starting a new texture indirection). According to the spec, the
393 * ~p->temps_output isn't necessary, but will keep it there for
394 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000395 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000396 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000397
398 /* Then any unused temporary:
399 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000400 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000401 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000402
403 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000404 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000405 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000406 }
407
Brian Paul13abf912006-04-13 19:17:13 +0000408 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000409 p->program->Base.NumTemporaries = bit;
410
Keith Whitwell93cd9232005-05-11 08:30:23 +0000411 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000412 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
413}
414
Keith Whitwell15e75e02005-04-29 15:11:39 +0000415
Brian93fef222007-10-29 12:25:46 -0600416static void release_temps(GLcontext *ctx, struct texenv_fragment_program *p )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000417{
Brian93fef222007-10-29 12:25:46 -0600418 GLuint max_temp = ctx->Const.FragmentProgram.MaxTemps;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000419
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000420 /* KW: To support tex_env_crossbar, don't release the registers in
421 * temps_output.
422 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000423 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000424 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000425 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000426 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000427}
428
429
Brian9fe3e2e2007-02-23 11:44:14 -0700430static struct ureg register_param5( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000431 GLint s0,
432 GLint s1,
433 GLint s2,
434 GLint s3,
Brian9fe3e2e2007-02-23 11:44:14 -0700435 GLint s4)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000436{
Brian9fe3e2e2007-02-23 11:44:14 -0700437 gl_state_index tokens[STATE_LENGTH];
Keith Whitwell47b29f52005-05-04 11:44:44 +0000438 GLuint idx;
439 tokens[0] = s0;
440 tokens[1] = s1;
441 tokens[2] = s2;
442 tokens[3] = s3;
443 tokens[4] = s4;
Brian Paulde997602005-11-12 17:53:14 +0000444 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000445 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000446}
447
Keith Whitwell47b29f52005-05-04 11:44:44 +0000448
Brian9fe3e2e2007-02-23 11:44:14 -0700449#define register_param1(p,s0) register_param5(p,s0,0,0,0,0)
450#define register_param2(p,s0,s1) register_param5(p,s0,s1,0,0,0)
451#define register_param3(p,s0,s1,s2) register_param5(p,s0,s1,s2,0,0)
452#define register_param4(p,s0,s1,s2,s3) register_param5(p,s0,s1,s2,s3,0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000453
454
455static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
456{
Brian Paulde997602005-11-12 17:53:14 +0000457 p->program->Base.InputsRead |= (1 << input);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000458 return make_ureg(PROGRAM_INPUT, input);
459}
460
461
Brian Paul7e807512005-11-05 17:10:45 +0000462static void emit_arg( struct prog_src_register *reg,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000463 struct ureg ureg )
464{
465 reg->File = ureg.file;
466 reg->Index = ureg.idx;
467 reg->Swizzle = ureg.swz;
Keith Whitwellf2802c42005-10-07 09:55:26 +0000468 reg->NegateBase = ureg.negatebase ? 0xf : 0x0;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000469 reg->Abs = ureg.abs;
470 reg->NegateAbs = ureg.negateabs;
471}
472
Brian Paul7e807512005-11-05 17:10:45 +0000473static void emit_dst( struct prog_dst_register *dst,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000474 struct ureg ureg, GLuint mask )
475{
476 dst->File = ureg.file;
477 dst->Index = ureg.idx;
478 dst->WriteMask = mask;
Brianc9d495c2007-10-23 10:55:24 -0600479 dst->CondMask = COND_TR; /* always pass cond test */
480 dst->CondSwizzle = SWIZZLE_NOOP;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000481}
482
Brian Paul7e807512005-11-05 17:10:45 +0000483static struct prog_instruction *
Keith Whitwell15e75e02005-04-29 15:11:39 +0000484emit_op(struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000485 enum prog_opcode op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000486 struct ureg dest,
487 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000488 GLboolean saturate,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000489 struct ureg src0,
490 struct ureg src1,
491 struct ureg src2 )
492{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000493 GLuint nr = p->program->Base.NumInstructions++;
Brian Paulde997602005-11-12 17:53:14 +0000494 struct prog_instruction *inst = &p->program->Base.Instructions[nr];
Brian2a8e9bb2007-10-23 10:24:53 -0600495
496 assert(nr < MAX_INSTRUCTIONS);
497
Brian Pauld6272e02006-10-29 18:03:16 +0000498 _mesa_init_instructions(inst, 1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000499 inst->Opcode = op;
500
Keith Whitwell47b29f52005-05-04 11:44:44 +0000501 emit_arg( &inst->SrcReg[0], src0 );
502 emit_arg( &inst->SrcReg[1], src1 );
503 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000504
Brian Paule31ac052005-11-20 17:52:40 +0000505 inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000506
507 emit_dst( &inst->DstReg, dest, mask );
508
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000509 /* Accounting for indirection tracking:
510 */
511 if (dest.file == PROGRAM_TEMPORARY)
512 p->temps_output |= 1 << dest.idx;
513
Keith Whitwell15e75e02005-04-29 15:11:39 +0000514 return inst;
515}
516
517
518static struct ureg emit_arith( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000519 enum prog_opcode op,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000520 struct ureg dest,
521 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000522 GLboolean saturate,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000523 struct ureg src0,
524 struct ureg src1,
525 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000526{
527 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
528
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000529 /* Accounting for indirection tracking:
530 */
531 if (src0.file == PROGRAM_TEMPORARY)
532 p->alu_temps |= 1 << src0.idx;
533
534 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
535 p->alu_temps |= 1 << src1.idx;
536
537 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
538 p->alu_temps |= 1 << src2.idx;
539
540 if (dest.file == PROGRAM_TEMPORARY)
541 p->alu_temps |= 1 << dest.idx;
542
Brian21f99792007-01-09 11:00:21 -0700543 p->program->Base.NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000544 return dest;
545}
546
547static struct ureg emit_texld( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000548 enum prog_opcode op,
Keith Whitwellce721142005-07-11 10:10:38 +0000549 struct ureg dest,
550 GLuint destmask,
551 GLuint tex_unit,
552 GLuint tex_idx,
553 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000554{
Brian Paul7e807512005-11-05 17:10:45 +0000555 struct prog_instruction *inst = emit_op( p, op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000556 dest, destmask,
Brian Paul22db5352005-11-19 23:45:10 +0000557 GL_FALSE, /* don't saturate? */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000558 coord, /* arg 0? */
559 undef,
560 undef);
561
Brian Paul7e807512005-11-05 17:10:45 +0000562 inst->TexSrcTarget = tex_idx;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000563 inst->TexSrcUnit = tex_unit;
564
Brian21f99792007-01-09 11:00:21 -0700565 p->program->Base.NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000566
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000567 /* Is this a texture indirection?
568 */
569 if ((coord.file == PROGRAM_TEMPORARY &&
570 (p->temps_output & (1<<coord.idx))) ||
571 (dest.file == PROGRAM_TEMPORARY &&
572 (p->alu_temps & (1<<dest.idx)))) {
Brian21f99792007-01-09 11:00:21 -0700573 p->program->Base.NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000574 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000575 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000576 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000577 }
578
579 return dest;
580}
581
582
Keith Whitwell47b29f52005-05-04 11:44:44 +0000583static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000584 GLfloat s0,
585 GLfloat s1,
586 GLfloat s2,
587 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000588{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000589 GLfloat values[4];
Briana90046f2006-12-15 10:07:26 -0700590 GLuint idx, swizzle;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000591 values[0] = s0;
592 values[1] = s1;
593 values[2] = s2;
594 values[3] = s3;
Briana90046f2006-12-15 10:07:26 -0700595 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values, 4,
596 &swizzle );
597 ASSERT(swizzle == SWIZZLE_NOOP);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000598 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000599}
600
Keith Whitwelle4902422005-05-11 15:16:35 +0000601#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000602#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
603#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
604#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000605
606
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000607static struct ureg get_one( struct texenv_fragment_program *p )
608{
609 if (is_undef(p->one))
610 p->one = register_scalar_const(p, 1.0);
611 return p->one;
612}
613
614static struct ureg get_half( struct texenv_fragment_program *p )
615{
616 if (is_undef(p->half))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000617 p->half = register_scalar_const(p, 0.5);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000618 return p->half;
619}
620
621static struct ureg get_zero( struct texenv_fragment_program *p )
622{
623 if (is_undef(p->zero))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000624 p->zero = register_scalar_const(p, 0.0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000625 return p->zero;
626}
627
Keith Whitwell15e75e02005-04-29 15:11:39 +0000628
Keith Whitwell15e75e02005-04-29 15:11:39 +0000629static void program_error( struct texenv_fragment_program *p, const char *msg )
630{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000631 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000632 p->error = 1;
633}
634
Keith Whitwell15e75e02005-04-29 15:11:39 +0000635static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000636 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000637{
638 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000639 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000640 assert(!is_undef(p->src_texture[unit]));
641 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000642
Keith Whitwellce721142005-07-11 10:10:38 +0000643 case SRC_TEXTURE0:
644 case SRC_TEXTURE1:
645 case SRC_TEXTURE2:
646 case SRC_TEXTURE3:
647 case SRC_TEXTURE4:
648 case SRC_TEXTURE5:
649 case SRC_TEXTURE6:
650 case SRC_TEXTURE7:
651 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
652 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000653
Keith Whitwellce721142005-07-11 10:10:38 +0000654 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000655 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000656
Keith Whitwellce721142005-07-11 10:10:38 +0000657 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000658 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000659
Keith Whitwellce721142005-07-11 10:10:38 +0000660 case SRC_PREVIOUS:
661 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000662 if (is_undef(p->src_previous))
663 return register_input(p, FRAG_ATTRIB_COL0);
664 else
665 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000666 }
667}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000668
Keith Whitwell15e75e02005-04-29 15:11:39 +0000669static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000670 GLuint mask,
671 GLuint unit,
672 GLuint source,
673 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000674{
675 struct ureg arg, src, one;
676
677 src = get_source(p, source, unit);
678
679 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000680 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000681 /* Get unused tmp,
682 * Emit tmp = 1.0 - arg.xyzw
683 */
684 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000685 one = get_one( p );
Brian Paul7e807512005-11-05 17:10:45 +0000686 return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000687
Keith Whitwellce721142005-07-11 10:10:38 +0000688 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000689 if (mask == WRITEMASK_W)
690 return src;
691 else
Brian Paul22db5352005-11-19 23:45:10 +0000692 return swizzle1( src, SWIZZLE_W );
Keith Whitwellce721142005-07-11 10:10:38 +0000693 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000694 /* Get unused tmp,
695 * Emit tmp = 1.0 - arg.wwww
696 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000697 arg = get_temp(p);
698 one = get_one(p);
Brian Paul7e807512005-11-05 17:10:45 +0000699 return emit_arith(p, OPCODE_SUB, arg, mask, 0,
Brian Paul22db5352005-11-19 23:45:10 +0000700 one, swizzle1(src, SWIZZLE_W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000701 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000702 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000703 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000704 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000705 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000706 default:
707 return src;
708 }
709}
710
Keith Whitwellce721142005-07-11 10:10:38 +0000711static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000712{
Brian Paul22db5352005-11-19 23:45:10 +0000713 GLuint i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000714
715 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000716 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000717 return GL_FALSE;
718
Keith Whitwellce721142005-07-11 10:10:38 +0000719 switch(key->unit[unit].OptA[i].Operand) {
720 case OPR_SRC_ALPHA:
721 switch(key->unit[unit].OptRGB[i].Operand) {
722 case OPR_SRC_COLOR:
723 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000724 break;
725 default:
726 return GL_FALSE;
727 }
728 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000729 case OPR_ONE_MINUS_SRC_ALPHA:
730 switch(key->unit[unit].OptRGB[i].Operand) {
731 case OPR_ONE_MINUS_SRC_COLOR:
732 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000733 break;
734 default:
735 return GL_FALSE;
736 }
737 break;
738 default:
739 return GL_FALSE; /* impossible */
740 }
741 }
742
743 return GL_TRUE;
744}
745
Keith Whitwell15e75e02005-04-29 15:11:39 +0000746static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000747 struct ureg dest,
748 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000749 GLboolean saturate,
Keith Whitwellce721142005-07-11 10:10:38 +0000750 GLuint unit,
751 GLuint nr,
752 GLuint mode,
Brian Pauld9736db2006-05-23 02:44:46 +0000753 const struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000754{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000755 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000756 struct ureg tmp, half;
Brian Paul22db5352005-11-19 23:45:10 +0000757 GLuint i;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000758
Brian Paul00630842005-12-12 15:27:55 +0000759 tmp = undef; /* silence warning (bug 5318) */
760
Keith Whitwell15e75e02005-04-29 15:11:39 +0000761 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000762 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000763
764 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000765 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000766 if (mask == WRITEMASK_XYZW && !saturate)
767 return src[0];
768 else
Brian Paul7e807512005-11-05 17:10:45 +0000769 return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000770 case MODE_MODULATE:
Brian Paul7e807512005-11-05 17:10:45 +0000771 return emit_arith( p, OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000772 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000773 case MODE_ADD:
Brian Paul7e807512005-11-05 17:10:45 +0000774 return emit_arith( p, OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000775 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000776 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000777 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000778 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000779 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000780 half = get_half(p);
Jerome Glisse99da2d32006-01-24 23:04:51 +0000781 tmp = get_temp( p );
Brian Paul7e807512005-11-05 17:10:45 +0000782 emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
783 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000784 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000785 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000786 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
787 */
Brian Paul7e807512005-11-05 17:10:45 +0000788 return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000789
Keith Whitwellce721142005-07-11 10:10:38 +0000790 case MODE_SUBTRACT:
Brian Paul7e807512005-11-05 17:10:45 +0000791 return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000792
Keith Whitwellce721142005-07-11 10:10:38 +0000793 case MODE_DOT3_RGBA:
794 case MODE_DOT3_RGBA_EXT:
795 case MODE_DOT3_RGB_EXT:
796 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000797 struct ureg tmp0 = get_temp( p );
798 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000799 struct ureg neg1 = register_scalar_const(p, -1);
800 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000801
802 /* tmp0 = 2*src0 - 1
803 * tmp1 = 2*src1 - 1
804 *
805 * dst = tmp0 dot3 tmp1
806 */
Brian Paul7e807512005-11-05 17:10:45 +0000807 emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000808 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000809
Brian Paulaa206952005-09-16 18:14:24 +0000810 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000811 tmp1 = tmp0;
812 else
Brian Paul7e807512005-11-05 17:10:45 +0000813 emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000814 two, src[1], neg1);
Brian Paul7e807512005-11-05 17:10:45 +0000815 emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000816 return dest;
817 }
Keith Whitwellce721142005-07-11 10:10:38 +0000818 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000819 /* Arg0 * Arg2 + Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000820 return emit_arith( p, OPCODE_MAD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000821 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000822 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000823 /* Arg0 * Arg2 + Arg1 - 0.5 */
824 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000825 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000826 emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
827 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000828 return dest;
829 }
Keith Whitwellce721142005-07-11 10:10:38 +0000830 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000831 /* Arg0 * Arg2 - Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000832 emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000833 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000834 default:
835 return src[0];
836 }
837}
838
Keith Whitwell15e75e02005-04-29 15:11:39 +0000839
Brian Paul22db5352005-11-19 23:45:10 +0000840/**
841 * Generate instructions for one texture unit's env/combiner mode.
842 */
843static struct ureg
844emit_texenv(struct texenv_fragment_program *p, GLuint unit)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000845{
Keith Whitwellce721142005-07-11 10:10:38 +0000846 struct state_key *key = p->state;
Brian Paul22db5352005-11-19 23:45:10 +0000847 GLboolean saturate = (unit < p->last_tex_stage);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000848 GLuint rgb_shift, alpha_shift;
849 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000850 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000851
Keith Whitwellce721142005-07-11 10:10:38 +0000852 if (!key->unit[unit].enabled) {
853 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000854 }
Keith Whitwellce721142005-07-11 10:10:38 +0000855
856 switch (key->unit[unit].ModeRGB) {
857 case MODE_DOT3_RGB_EXT:
858 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000859 rgb_shift = 0;
860 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000861 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000862 alpha_shift = 0;
863 rgb_shift = 0;
864 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000865 default:
Keith Whitwellce721142005-07-11 10:10:38 +0000866 rgb_shift = key->unit[unit].ScaleShiftRGB;
867 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000868 break;
869 }
Keith Whitwellce721142005-07-11 10:10:38 +0000870
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000871 /* If this is the very last calculation, emit direct to output reg:
872 */
Keith Whitwellce721142005-07-11 10:10:38 +0000873 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000874 unit != p->last_tex_stage ||
875 alpha_shift ||
876 rgb_shift)
877 dest = get_temp( p );
878 else
Brian Paul90ebb582005-11-02 18:06:12 +0000879 dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000880
881 /* Emit the RGB and A combine ops
882 */
Keith Whitwellce721142005-07-11 10:10:38 +0000883 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
884 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000885 out = emit_combine( p, dest, WRITEMASK_XYZW, 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 }
Keith Whitwellce721142005-07-11 10:10:38 +0000891 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
Roland Scheidegger9a451762007-07-03 14:27:41 +0200892 key->unit[unit].ModeRGB == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000893
894 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
895 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000896 key->unit[unit].NumArgsRGB,
897 key->unit[unit].ModeRGB,
898 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000899 }
900 else {
901 /* Need to do something to stop from re-emitting identical
902 * argument calculations here:
903 */
904 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
905 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000906 key->unit[unit].NumArgsRGB,
907 key->unit[unit].ModeRGB,
908 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000909 out = emit_combine( p, dest, WRITEMASK_W, saturate,
910 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000911 key->unit[unit].NumArgsA,
912 key->unit[unit].ModeA,
913 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000914 }
915
916 /* Deal with the final shift:
917 */
918 if (alpha_shift || rgb_shift) {
919 if (rgb_shift == alpha_shift) {
José Fonseca452a5922008-05-31 18:14:09 +0900920 shift = register_scalar_const(p, (GLfloat)(1<<rgb_shift));
Keith Whitwell15e75e02005-04-29 15:11:39 +0000921 }
922 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000923 shift = register_const4f(p,
José Fonseca452a5922008-05-31 18:14:09 +0900924 (GLfloat)(1<<rgb_shift),
925 (GLfloat)(1<<rgb_shift),
926 (GLfloat)(1<<rgb_shift),
927 (GLfloat)(1<<alpha_shift));
Keith Whitwell15e75e02005-04-29 15:11:39 +0000928 }
Brian Paul7e807512005-11-05 17:10:45 +0000929 return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000930 saturate, out, shift, undef );
931 }
932 else
933 return out;
934}
935
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000936
Brian Paul22db5352005-11-19 23:45:10 +0000937/**
938 * Generate instruction for getting a texture source term.
939 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000940static void load_texture( struct texenv_fragment_program *p, GLuint unit )
941{
942 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +0000943 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000944 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
945 struct ureg tmp = get_tex_temp( p );
946
Brian Paulbfb5ea32005-07-19 18:20:04 +0000947 if (dim == TEXTURE_UNKNOWN_INDEX)
948 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +0000949
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000950 /* TODO: Use D0_MASK_XY where possible.
951 */
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200952 if (p->state->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +0000953 p->src_texture[unit] = emit_texld( p, OPCODE_TXP,
954 tmp, WRITEMASK_XYZW,
955 unit, dim, texcoord );
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200956 if (p->state->unit[unit].shadow)
957 p->program->Base.ShadowSamplers |= 1 << unit;
958 } else
Aapo Tahkolab8915342006-03-28 10:26:34 +0000959 p->src_texture[unit] = get_zero(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000960 }
961}
962
Keith Whitwell241b6b72005-05-23 09:50:34 +0000963static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000964 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000965{
966 switch (src) {
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000967 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000968 load_texture(p, unit);
969 break;
970
Keith Whitwellce721142005-07-11 10:10:38 +0000971 case SRC_TEXTURE0:
972 case SRC_TEXTURE1:
973 case SRC_TEXTURE2:
974 case SRC_TEXTURE3:
975 case SRC_TEXTURE4:
976 case SRC_TEXTURE5:
977 case SRC_TEXTURE6:
978 case SRC_TEXTURE7:
Keith Whitwellce721142005-07-11 10:10:38 +0000979 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000980 break;
981
982 default:
983 break;
984 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000985
986 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000987}
988
Brian Paul22db5352005-11-19 23:45:10 +0000989
990/**
991 * Generate instructions for loading all texture source terms.
992 */
993static GLboolean
994load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000995{
Keith Whitwellce721142005-07-11 10:10:38 +0000996 struct state_key *key = p->state;
Aapo Tahkolab8915342006-03-28 10:26:34 +0000997 GLuint i;
998
999 for (i = 0; i < key->unit[unit].NumArgsRGB; i++) {
1000 load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001001 }
Aapo Tahkolab8915342006-03-28 10:26:34 +00001002
1003 for (i = 0; i < key->unit[unit].NumArgsA; i++) {
1004 load_texenv_source( p, key->unit[unit].OptA[i].Source, unit );
1005 }
1006
Keith Whitwell241b6b72005-05-23 09:50:34 +00001007 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001008}
1009
Brian Paul22db5352005-11-19 23:45:10 +00001010
1011/**
1012 * Generate a new fragment program which implements the context's
1013 * current texture env/combine mode.
1014 */
1015static void
Brian Paule998c342006-10-29 21:17:18 +00001016create_new_program(GLcontext *ctx, struct state_key *key,
Brian Paul122629f2006-07-20 16:49:57 +00001017 struct gl_fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001018{
Brian Paule998c342006-10-29 21:17:18 +00001019 struct prog_instruction instBuffer[MAX_INSTRUCTIONS];
Keith Whitwell15e75e02005-04-29 15:11:39 +00001020 struct texenv_fragment_program p;
1021 GLuint unit;
1022 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +00001023
Keith Whitwelle4902422005-05-11 15:16:35 +00001024 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +00001025 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +00001026 p.state = key;
1027 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001028
Brian Paule998c342006-10-29 21:17:18 +00001029 /* During code generation, use locally-allocated instruction buffer,
1030 * then alloc dynamic storage below.
1031 */
1032 p.program->Base.Instructions = instBuffer;
Keith Whitwell276330b2005-05-09 17:58:13 +00001033 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Brian21f99792007-01-09 11:00:21 -07001034 p.program->Base.NumTexIndirections = 1; /* correct? */
1035 p.program->Base.NumTexInstructions = 0;
1036 p.program->Base.NumAluInstructions = 0;
Brian1240eb22007-03-22 08:50:20 -06001037 p.program->Base.String = NULL;
Keith Whitwell9ca88152005-05-10 09:56:02 +00001038 p.program->Base.NumInstructions =
Brian Paule998c342006-10-29 21:17:18 +00001039 p.program->Base.NumTemporaries =
1040 p.program->Base.NumParameters =
1041 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00001042 p.program->Base.Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +00001043
Brian Paulde997602005-11-12 17:53:14 +00001044 p.program->Base.InputsRead = 0;
1045 p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001046
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001047 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1048 p.src_texture[unit] = undef;
1049
Keith Whitwell47b29f52005-05-04 11:44:44 +00001050 p.src_previous = undef;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001051 p.half = undef;
1052 p.zero = undef;
1053 p.one = undef;
1054
Keith Whitwell15e75e02005-04-29 15:11:39 +00001055 p.last_tex_stage = 0;
Brian93fef222007-10-29 12:25:46 -06001056 release_temps(ctx, &p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001057
Keith Whitwellce721142005-07-11 10:10:38 +00001058 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001059 /* First pass - to support texture_env_crossbar, first identify
1060 * all referenced texture sources and emit texld instructions
1061 * for each:
1062 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001063 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001064 if (key->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +00001065 load_texunit_sources( &p, unit );
1066 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001067 }
1068
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001069 /* Second pass - emit combine instructions to build final color:
1070 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001071 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001072 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001073 p.src_previous = emit_texenv( &p, unit );
Brian93fef222007-10-29 12:25:46 -06001074 release_temps(ctx, &p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001075 }
1076 }
1077
Keith Whitwellce721142005-07-11 10:10:38 +00001078 cf = get_source( &p, SRC_PREVIOUS, 0 );
Brian Paul90ebb582005-11-02 18:06:12 +00001079 out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001080
Keith Whitwellce721142005-07-11 10:10:38 +00001081 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001082 /* Emit specular add.
1083 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001084 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Brian Paul7e807512005-11-05 17:10:45 +00001085 emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
1086 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001087 }
Brian Paulaa206952005-09-16 18:14:24 +00001088 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001089 /* Will wind up in here if no texture enabled or a couple of
1090 * other scenarios (GL_REPLACE for instance).
1091 */
Brian Paul7e807512005-11-05 17:10:45 +00001092 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001093 }
1094
Keith Whitwell47b29f52005-05-04 11:44:44 +00001095 /* Finish up:
1096 */
Brian Paul7e807512005-11-05 17:10:45 +00001097 emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001098
Keith Whitwellce721142005-07-11 10:10:38 +00001099 if (key->fog_enabled) {
1100 /* Pull fog mode from GLcontext, the value in the state key is
1101 * a reduced value and not what is expected in FogOption
1102 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001103 p.program->FogOption = ctx->Fog.Mode;
Brian19d77d62007-09-18 19:29:26 -06001104 p.program->Base.InputsRead |= FRAG_BIT_FOGC; /* XXX new */
Keith Whitwellce721142005-07-11 10:10:38 +00001105 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001106 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001107
Brian21f99792007-01-09 11:00:21 -07001108 if (p.program->Base.NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001109 program_error(&p, "Exceeded max nr indirect texture lookups");
1110
Brian21f99792007-01-09 11:00:21 -07001111 if (p.program->Base.NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001112 program_error(&p, "Exceeded max TEX instructions");
1113
Brian21f99792007-01-09 11:00:21 -07001114 if (p.program->Base.NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001115 program_error(&p, "Exceeded max ALU instructions");
1116
Brian Paul5d7b49f2005-11-19 23:12:20 +00001117 ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS);
Keith Whitwell8b88f622005-05-10 11:39:50 +00001118
Brian Paule998c342006-10-29 21:17:18 +00001119 /* Allocate final instruction array */
Brianc81cce72007-09-25 15:18:51 -06001120 p.program->Base.Instructions
1121 = _mesa_alloc_instructions(p.program->Base.NumInstructions);
1122 if (!p.program->Base.Instructions) {
Brian Paule998c342006-10-29 21:17:18 +00001123 _mesa_error(ctx, GL_OUT_OF_MEMORY,
1124 "generating tex env program");
1125 return;
1126 }
Brianc81cce72007-09-25 15:18:51 -06001127 _mesa_copy_instructions(p.program->Base.Instructions, instBuffer,
1128 p.program->Base.NumInstructions);
1129
1130 if (p.program->FogOption) {
1131 _mesa_append_fog_code(ctx, p.program);
1132 p.program->FogOption = GL_NONE;
1133 }
1134
Brian Paule998c342006-10-29 21:17:18 +00001135
Keith Whitwelldbeea252005-05-10 13:57:50 +00001136 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001137 */
Brian Paule998c342006-10-29 21:17:18 +00001138 if (ctx->Driver.ProgramStringNotify) {
1139 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1140 &p.program->Base );
1141 }
Keith Whitwelldbeea252005-05-10 13:57:50 +00001142
Brian Paule998c342006-10-29 21:17:18 +00001143 if (DISASSEM) {
1144 _mesa_print_program(&p.program->Base);
1145 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001146 }
Keith Whitwell15e75e02005-04-29 15:11:39 +00001147}
1148
Brian Paul5d7b49f2005-11-19 23:12:20 +00001149
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001150/**
1151 * Return a fragment program which implements the current
1152 * fixed-function texture, fog and color-sum operations.
1153 */
1154struct gl_fragment_program *
1155_mesa_get_fixed_func_fragment_program(GLcontext *ctx)
Keith Whitwellce721142005-07-11 10:10:38 +00001156{
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001157 struct gl_fragment_program *prog;
1158 struct state_key key;
1159
1160 make_state_key(ctx, &key);
1161
1162 prog = (struct gl_fragment_program *)
1163 _mesa_search_program_cache(ctx->FragmentProgram.Cache,
1164 &key, sizeof(key));
Keith Whitwellce721142005-07-11 10:10:38 +00001165
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001166 if (!prog) {
1167 prog = (struct gl_fragment_program *)
1168 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
1169
1170 create_new_program(ctx, &key, prog);
1171
1172 _mesa_program_cache_insert(ctx, ctx->FragmentProgram.Cache,
1173 &key, sizeof(key), &prog->Base);
Keith Whitwellce721142005-07-11 10:10:38 +00001174 }
1175
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001176 return prog;
Keith Whitwellce721142005-07-11 10:10:38 +00001177}
1178
Keith Whitwellce721142005-07-11 10:10:38 +00001179
Briana90046f2006-12-15 10:07:26 -07001180
1181/**
1182 * If _MaintainTexEnvProgram is set we'll generate a fragment program that
1183 * implements the current texture env/combine mode.
1184 * This function generates that program and puts it into effect.
1185 */
1186void
1187_mesa_UpdateTexEnvProgram( GLcontext *ctx )
Keith Whitwellce721142005-07-11 10:10:38 +00001188{
Brian Paul122629f2006-07-20 16:49:57 +00001189 const struct gl_fragment_program *prev = ctx->FragmentProgram._Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001190
Briana90046f2006-12-15 10:07:26 -07001191 ASSERT(ctx->FragmentProgram._MaintainTexEnvProgram);
1192
1193 /* If a conventional fragment program/shader isn't in effect... */
Brianefcfdbd2007-02-24 15:51:41 -07001194 if (!ctx->FragmentProgram._Enabled &&
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001195 (!ctx->Shader.CurrentProgram ||
1196 !ctx->Shader.CurrentProgram->FragmentProgram) )
1197 {
Brian Paul5b5c9312008-05-07 18:51:44 -06001198 struct gl_fragment_program *newProg;
1199
Keith Whitwell32ef6e72008-09-20 08:26:11 -07001200 newProg = _mesa_get_fixed_func_fragment_program(ctx);
Brian Paul5b5c9312008-05-07 18:51:44 -06001201
1202 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current, newProg);
1203 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._TexEnvProgram, newProg);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001204 }
Keith Whitwellc3626a92005-11-01 17:25:49 +00001205
1206 /* Tell the driver about the change. Could define a new target for
1207 * this?
1208 */
Brian Paul5d7b49f2005-11-19 23:12:20 +00001209 if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) {
1210 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
Briana90046f2006-12-15 10:07:26 -07001211 (struct gl_program *) ctx->FragmentProgram._Current);
Brian Paul5d7b49f2005-11-19 23:12:20 +00001212 }
Keith Whitwellce721142005-07-11 10:10:38 +00001213}