blob: ea2ee160e4fedee4f0c26ea598995f5e90412d74 [file] [log] [blame]
Keith Whitwell15e75e02005-04-29 15:11:39 +00001/**************************************************************************
2 *
Brianf4a5ea22007-10-31 12:45:32 -06003 * 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"
Brianc223c6b2007-07-04 13:15:20 -060031#include "shader/prog_parameter.h"
Brianf4a5ea22007-10-31 12:45:32 -060032#include "shader/prog_cache.h"
Brianc223c6b2007-07-04 13:15:20 -060033#include "shader/prog_instruction.h"
34#include "shader/prog_print.h"
35#include "shader/prog_statevars.h"
Brian83fad682007-09-25 15:20:04 -060036#include "shader/programopt.h"
Keith Whitwell15e75e02005-04-29 15:11:39 +000037#include "texenvprogram.h"
38
Brian Paule998c342006-10-29 21:17:18 +000039/**
Brian Paul3f99f502008-09-25 18:40:16 -060040 * Up to nine instructions per tex unit, plus fog, specular color.
Brian Paule998c342006-10-29 21:17:18 +000041 */
Brian Paul3f99f502008-09-25 18:40:16 -060042#define MAX_INSTRUCTIONS ((MAX_TEXTURE_UNITS * 9) + 12)
Keith Whitwell15e75e02005-04-29 15:11:39 +000043
Keith Whitwell269e3892005-05-12 10:28:43 +000044#define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)
Keith Whitwell15e75e02005-04-29 15:11:39 +000045
Keith Whitwellce721142005-07-11 10:10:38 +000046struct mode_opt {
Keith Whitwell6280e332008-10-03 13:51:56 +010047 GLubyte Source:4;
48 GLubyte Operand:3;
Keith Whitwellce721142005-07-11 10:10:38 +000049};
50
51struct state_key {
Keith Whitwell6280e332008-10-03 13:51:56 +010052 GLuint nr_enabled_units:8;
53 GLuint enabled_units:8;
Brian Paul5d7b49f2005-11-19 23:12:20 +000054 GLuint separate_specular:1;
55 GLuint fog_enabled:1;
56 GLuint fog_mode:2;
Keith Whitwell6280e332008-10-03 13:51:56 +010057 GLuint inputs_available:12;
Keith Whitwellce721142005-07-11 10:10:38 +000058
59 struct {
Brian Paul5d7b49f2005-11-19 23:12:20 +000060 GLuint enabled:1;
61 GLuint source_index:3; /* one of TEXTURE_1D/2D/3D/CUBE/RECT_INDEX */
62 GLuint ScaleShiftRGB:2;
63 GLuint ScaleShiftA:2;
Keith Whitwellce721142005-07-11 10:10:38 +000064
Brian Paul5d7b49f2005-11-19 23:12:20 +000065 GLuint NumArgsRGB:2;
66 GLuint ModeRGB:4;
Brian Paul5d7b49f2005-11-19 23:12:20 +000067 GLuint NumArgsA:2;
68 GLuint ModeA:4;
Keith Whitwell6280e332008-10-03 13:51:56 +010069
70 struct mode_opt OptRGB[3];
Keith Whitwellce721142005-07-11 10:10:38 +000071 struct mode_opt OptA[3];
72 } unit[8];
73};
74
75#define FOG_LINEAR 0
76#define FOG_EXP 1
77#define FOG_EXP2 2
78#define FOG_UNKNOWN 3
79
80static GLuint translate_fog_mode( GLenum mode )
81{
82 switch (mode) {
83 case GL_LINEAR: return FOG_LINEAR;
84 case GL_EXP: return FOG_EXP;
85 case GL_EXP2: return FOG_EXP2;
86 default: return FOG_UNKNOWN;
87 }
88}
89
90#define OPR_SRC_COLOR 0
91#define OPR_ONE_MINUS_SRC_COLOR 1
92#define OPR_SRC_ALPHA 2
93#define OPR_ONE_MINUS_SRC_ALPHA 3
94#define OPR_ZERO 4
95#define OPR_ONE 5
96#define OPR_UNKNOWN 7
97
98static GLuint translate_operand( GLenum operand )
99{
100 switch (operand) {
101 case GL_SRC_COLOR: return OPR_SRC_COLOR;
102 case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR;
103 case GL_SRC_ALPHA: return OPR_SRC_ALPHA;
104 case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA;
105 case GL_ZERO: return OPR_ZERO;
106 case GL_ONE: return OPR_ONE;
107 default: return OPR_UNKNOWN;
108 }
109}
110
111#define SRC_TEXTURE 0
112#define SRC_TEXTURE0 1
113#define SRC_TEXTURE1 2
114#define SRC_TEXTURE2 3
115#define SRC_TEXTURE3 4
116#define SRC_TEXTURE4 5
117#define SRC_TEXTURE5 6
118#define SRC_TEXTURE6 7
119#define SRC_TEXTURE7 8
120#define SRC_CONSTANT 9
121#define SRC_PRIMARY_COLOR 10
122#define SRC_PREVIOUS 11
123#define SRC_UNKNOWN 15
124
125static GLuint translate_source( GLenum src )
126{
127 switch (src) {
128 case GL_TEXTURE: return SRC_TEXTURE;
129 case GL_TEXTURE0:
130 case GL_TEXTURE1:
131 case GL_TEXTURE2:
132 case GL_TEXTURE3:
133 case GL_TEXTURE4:
134 case GL_TEXTURE5:
135 case GL_TEXTURE6:
136 case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0);
137 case GL_CONSTANT: return SRC_CONSTANT;
138 case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR;
139 case GL_PREVIOUS: return SRC_PREVIOUS;
140 default: return SRC_UNKNOWN;
141 }
142}
143
144#define MODE_REPLACE 0
145#define MODE_MODULATE 1
146#define MODE_ADD 2
147#define MODE_ADD_SIGNED 3
148#define MODE_INTERPOLATE 4
149#define MODE_SUBTRACT 5
150#define MODE_DOT3_RGB 6
151#define MODE_DOT3_RGB_EXT 7
152#define MODE_DOT3_RGBA 8
153#define MODE_DOT3_RGBA_EXT 9
154#define MODE_MODULATE_ADD_ATI 10
155#define MODE_MODULATE_SIGNED_ADD_ATI 11
156#define MODE_MODULATE_SUBTRACT_ATI 12
157#define MODE_UNKNOWN 15
158
159static GLuint translate_mode( GLenum mode )
160{
161 switch (mode) {
162 case GL_REPLACE: return MODE_REPLACE;
163 case GL_MODULATE: return MODE_MODULATE;
164 case GL_ADD: return MODE_ADD;
165 case GL_ADD_SIGNED: return MODE_ADD_SIGNED;
166 case GL_INTERPOLATE: return MODE_INTERPOLATE;
167 case GL_SUBTRACT: return MODE_SUBTRACT;
168 case GL_DOT3_RGB: return MODE_DOT3_RGB;
169 case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT;
170 case GL_DOT3_RGBA: return MODE_DOT3_RGBA;
171 case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT;
172 case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI;
173 case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI;
174 case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI;
175 default: return MODE_UNKNOWN;
176 }
177}
178
179#define TEXTURE_UNKNOWN_INDEX 7
Brian Paule00ac112005-09-15 05:00:45 +0000180static GLuint translate_tex_src_bit( GLbitfield bit )
Keith Whitwellce721142005-07-11 10:10:38 +0000181{
182 switch (bit) {
183 case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;
184 case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX;
185 case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX;
186 case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX;
187 case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX;
188 default: return TEXTURE_UNKNOWN_INDEX;
189 }
190}
191
Keith Whitwell1680ef82008-10-03 17:30:59 +0100192#define VERT_BIT_TEX_ANY (0xff << VERT_ATTRIB_TEX0)
193#define VERT_RESULT_TEX_ANY (0xff << VERT_RESULT_TEX0)
194
195/* Identify all possible varying inputs. The fragment program will
196 * never reference non-varying inputs, but will track them via state
197 * constants instead.
198 *
199 * This function figures out all the inputs that the fragment program
200 * has access to. The bitmask is later reduced to just those which
201 * are actually referenced.
202 */
203static GLuint get_fp_input_mask( GLcontext *ctx )
204{
205 GLuint fp_inputs = 0;
206
Keith Whitwell0370d6b2008-10-04 12:41:56 +0100207 if (!ctx->VertexProgram._Enabled) {
Keith Whitwell1680ef82008-10-03 17:30:59 +0100208 GLuint varying_inputs = ctx->varying_vp_inputs;
209
210 /* First look at what values may be computed by the generated
211 * vertex program:
212 */
213 if (ctx->Light.Enabled) {
214 fp_inputs |= FRAG_BIT_COL0;
215
216 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
217 fp_inputs |= FRAG_BIT_COL1;
218 }
219
220 fp_inputs |= (ctx->Texture._TexGenEnabled |
221 ctx->Texture._TexMatEnabled) << FRAG_ATTRIB_TEX0;
222
223 /* Then look at what might be varying as a result of enabled
224 * arrays, etc:
225 */
226 if (varying_inputs & VERT_BIT_COLOR0) fp_inputs |= FRAG_BIT_COL0;
227 if (varying_inputs & VERT_BIT_COLOR1) fp_inputs |= FRAG_BIT_COL1;
228
229 fp_inputs |= (((varying_inputs & VERT_BIT_TEX_ANY) >> VERT_ATTRIB_TEX0)
230 << FRAG_ATTRIB_TEX0);
231
232 }
233 else {
234 /* calculate from vp->outputs */
Keith Whitwell0370d6b2008-10-04 12:41:56 +0100235 GLuint vp_outputs = ctx->VertexProgram._Current->Base.OutputsWritten;
Keith Whitwell1680ef82008-10-03 17:30:59 +0100236
237 if (vp_outputs & (1 << VERT_RESULT_COL0)) fp_inputs |= FRAG_BIT_COL0;
238 if (vp_outputs & (1 << VERT_RESULT_COL1)) fp_inputs |= FRAG_BIT_COL1;
239
Keith Whitwell0370d6b2008-10-04 12:41:56 +0100240 fp_inputs |= (((vp_outputs & VERT_RESULT_TEX_ANY) >> VERT_RESULT_TEX0)
241 << FRAG_ATTRIB_TEX0);
Keith Whitwell1680ef82008-10-03 17:30:59 +0100242 }
243
244 return fp_inputs;
245}
246
247
Brian Paul22db5352005-11-19 23:45:10 +0000248/**
249 * Examine current texture environment state and generate a unique
250 * key to identify it.
251 */
Keith Whitwell8065c122006-05-22 16:09:27 +0000252static void make_state_key( GLcontext *ctx, struct state_key *key )
Keith Whitwellce721142005-07-11 10:10:38 +0000253{
Keith Whitwellce721142005-07-11 10:10:38 +0000254 GLuint i, j;
Keith Whitwell1680ef82008-10-03 17:30:59 +0100255 GLuint inputs_referenced = FRAG_BIT_COL0;
256 GLuint inputs_available = get_fp_input_mask( ctx );
257
Keith Whitwell8065c122006-05-22 16:09:27 +0000258 memset(key, 0, sizeof(*key));
259
Keith Whitwellce721142005-07-11 10:10:38 +0000260 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
Brian Pauld9736db2006-05-23 02:44:46 +0000261 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
Keith Whitwellce721142005-07-11 10:10:38 +0000262
Keith Whitwell1680ef82008-10-03 17:30:59 +0100263 if (!texUnit->_ReallyEnabled)
Keith Whitwellce721142005-07-11 10:10:38 +0000264 continue;
265
266 key->unit[i].enabled = 1;
267 key->enabled_units |= (1<<i);
Keith Whitwell1680ef82008-10-03 17:30:59 +0100268 key->nr_enabled_units = i+1;
269 inputs_referenced |= FRAG_BIT_TEX(i);
Keith Whitwellce721142005-07-11 10:10:38 +0000270
271 key->unit[i].source_index =
272 translate_tex_src_bit(texUnit->_ReallyEnabled);
273
274 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
275 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
276
277 key->unit[i].ModeRGB =
278 translate_mode(texUnit->_CurrentCombine->ModeRGB);
279 key->unit[i].ModeA =
280 translate_mode(texUnit->_CurrentCombine->ModeA);
281
282 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
Keith Whitwell64da1612006-05-22 14:30:58 +0000283 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftA;
Keith Whitwellce721142005-07-11 10:10:38 +0000284
285 for (j=0;j<3;j++) {
286 key->unit[i].OptRGB[j].Operand =
287 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
288 key->unit[i].OptA[j].Operand =
289 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
290 key->unit[i].OptRGB[j].Source =
291 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
292 key->unit[i].OptA[j].Source =
293 translate_source(texUnit->_CurrentCombine->SourceA[j]);
294 }
295 }
296
Keith Whitwell1680ef82008-10-03 17:30:59 +0100297 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR) {
Keith Whitwellce721142005-07-11 10:10:38 +0000298 key->separate_specular = 1;
Keith Whitwell1680ef82008-10-03 17:30:59 +0100299 inputs_referenced |= FRAG_BIT_COL1;
300 }
Keith Whitwellce721142005-07-11 10:10:38 +0000301
302 if (ctx->Fog.Enabled) {
303 key->fog_enabled = 1;
304 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
Keith Whitwell1680ef82008-10-03 17:30:59 +0100305 inputs_referenced |= FRAG_BIT_FOGC; /* maybe */
Keith Whitwellce721142005-07-11 10:10:38 +0000306 }
Keith Whitwell1680ef82008-10-03 17:30:59 +0100307
308 key->inputs_available = (inputs_available & inputs_referenced);
Keith Whitwellce721142005-07-11 10:10:38 +0000309}
310
Keith Whitwell15e75e02005-04-29 15:11:39 +0000311/* Use uregs to represent registers internally, translate to Mesa's
312 * expected formats on emit.
313 *
314 * NOTE: These are passed by value extensively in this file rather
315 * than as usual by pointer reference. If this disturbs you, try
316 * remembering they are just 32bits in size.
317 *
318 * GCC is smart enough to deal with these dword-sized structures in
319 * much the same way as if I had defined them as dwords and was using
320 * macros to access and set the fields. This is much nicer and easier
321 * to evolve.
322 */
323struct ureg {
324 GLuint file:4;
325 GLuint idx:8;
326 GLuint negatebase:1;
327 GLuint abs:1;
328 GLuint negateabs:1;
329 GLuint swz:12;
330 GLuint pad:5;
331};
332
Brian Paul13abf912006-04-13 19:17:13 +0000333static const struct ureg undef = {
Alan Hourihane8d972652006-08-10 13:12:00 +0000334 PROGRAM_UNDEFINED,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000335 ~0,
336 0,
337 0,
338 0,
339 0,
340 0
341};
342
Keith Whitwell15e75e02005-04-29 15:11:39 +0000343
Keith Whitwell15e75e02005-04-29 15:11:39 +0000344/* State used to build the fragment program:
345 */
346struct texenv_fragment_program {
Brian Paul122629f2006-07-20 16:49:57 +0000347 struct gl_fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000348 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000349 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000350
Brian Paulc8d17412005-12-14 03:06:16 +0000351 GLbitfield alu_temps; /* Track texture indirections, see spec. */
352 GLbitfield temps_output; /* Track texture indirections, see spec. */
353 GLbitfield temp_in_use; /* Tracks temporary regs which are in use. */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000354 GLboolean error;
355
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000356 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000357 /* Reg containing each texture unit's sampled texture color,
358 * else undef.
359 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000360
361 struct ureg src_previous; /* Reg containing color from previous
362 * stage. May need to be decl'd.
363 */
364
365 GLuint last_tex_stage; /* Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000366
367 struct ureg half;
368 struct ureg one;
369 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000370};
371
372
373
374static struct ureg make_ureg(GLuint file, GLuint idx)
375{
376 struct ureg reg;
377 reg.file = file;
378 reg.idx = idx;
379 reg.negatebase = 0;
380 reg.abs = 0;
381 reg.negateabs = 0;
382 reg.swz = SWIZZLE_NOOP;
383 reg.pad = 0;
384 return reg;
385}
386
387static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
388{
389 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
390 GET_SWZ(reg.swz, y),
391 GET_SWZ(reg.swz, z),
392 GET_SWZ(reg.swz, w));
393
394 return reg;
395}
396
397static struct ureg swizzle1( struct ureg reg, int x )
398{
399 return swizzle(reg, x, x, x, x);
400}
401
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000402static struct ureg negate( struct ureg reg )
403{
404 reg.negatebase ^= 1;
405 return reg;
406}
407
Keith Whitwell15e75e02005-04-29 15:11:39 +0000408static GLboolean is_undef( struct ureg reg )
409{
Alan Hourihane8d972652006-08-10 13:12:00 +0000410 return reg.file == PROGRAM_UNDEFINED;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000411}
412
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000413
Keith Whitwell15e75e02005-04-29 15:11:39 +0000414static struct ureg get_temp( struct texenv_fragment_program *p )
415{
Brian Paul13abf912006-04-13 19:17:13 +0000416 GLint bit;
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000417
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000418 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000419 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000420 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000421
422 /* Then any unused temporary:
423 */
424 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000425 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000426
Keith Whitwell15e75e02005-04-29 15:11:39 +0000427 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000428 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000429 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000430 }
431
Brian Paul13abf912006-04-13 19:17:13 +0000432 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000433 p->program->Base.NumTemporaries = bit;
434
Keith Whitwell93cd9232005-05-11 08:30:23 +0000435 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000436 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
437}
438
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000439static struct ureg get_tex_temp( struct texenv_fragment_program *p )
440{
441 int bit;
442
Brian Paul006fb632008-09-25 18:27:22 -0600443 /* First try to find available temp not previously used (to avoid
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000444 * starting a new texture indirection). According to the spec, the
445 * ~p->temps_output isn't necessary, but will keep it there for
446 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000447 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000448 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000449
450 /* Then any unused temporary:
451 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000452 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000453 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000454
455 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000456 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000457 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000458 }
459
Brian Paul13abf912006-04-13 19:17:13 +0000460 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000461 p->program->Base.NumTemporaries = bit;
462
Keith Whitwell93cd9232005-05-11 08:30:23 +0000463 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000464 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
465}
466
Keith Whitwell15e75e02005-04-29 15:11:39 +0000467
Brian Paul8fd329d2008-09-26 11:18:06 -0600468/** Mark a temp reg as being no longer allocatable. */
469static void reserve_temp( struct texenv_fragment_program *p, struct ureg r )
470{
471 if (r.file == PROGRAM_TEMPORARY)
472 p->temps_output |= (1 << r.idx);
473}
474
475
Brianf18d4e02007-10-29 12:25:46 -0600476static void release_temps(GLcontext *ctx, struct texenv_fragment_program *p )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000477{
Brianf18d4e02007-10-29 12:25:46 -0600478 GLuint max_temp = ctx->Const.FragmentProgram.MaxTemps;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000479
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000480 /* KW: To support tex_env_crossbar, don't release the registers in
481 * temps_output.
482 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000483 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000484 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000485 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000486 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000487}
488
489
Brian9fe3e2e2007-02-23 11:44:14 -0700490static struct ureg register_param5( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000491 GLint s0,
492 GLint s1,
493 GLint s2,
494 GLint s3,
Brian9fe3e2e2007-02-23 11:44:14 -0700495 GLint s4)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000496{
Brian9fe3e2e2007-02-23 11:44:14 -0700497 gl_state_index tokens[STATE_LENGTH];
Keith Whitwell47b29f52005-05-04 11:44:44 +0000498 GLuint idx;
499 tokens[0] = s0;
500 tokens[1] = s1;
501 tokens[2] = s2;
502 tokens[3] = s3;
503 tokens[4] = s4;
Brian Paulde997602005-11-12 17:53:14 +0000504 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000505 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000506}
507
Keith Whitwell47b29f52005-05-04 11:44:44 +0000508
Brian9fe3e2e2007-02-23 11:44:14 -0700509#define register_param1(p,s0) register_param5(p,s0,0,0,0,0)
510#define register_param2(p,s0,s1) register_param5(p,s0,s1,0,0,0)
511#define register_param3(p,s0,s1,s2) register_param5(p,s0,s1,s2,0,0)
512#define register_param4(p,s0,s1,s2,s3) register_param5(p,s0,s1,s2,s3,0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000513
Keith Whitwell1680ef82008-10-03 17:30:59 +0100514static GLuint frag_to_vert_attrib( GLuint attrib )
515{
516 switch (attrib) {
517 case FRAG_ATTRIB_COL0: return VERT_ATTRIB_COLOR0;
518 case FRAG_ATTRIB_COL1: return VERT_ATTRIB_COLOR1;
519 default:
520 assert(attrib >= FRAG_ATTRIB_TEX0);
521 assert(attrib <= FRAG_ATTRIB_TEX7);
522 return attrib - FRAG_ATTRIB_TEX0 + VERT_ATTRIB_TEX0;
523 }
524}
525
Keith Whitwell47b29f52005-05-04 11:44:44 +0000526
527static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
528{
Keith Whitwell1680ef82008-10-03 17:30:59 +0100529 if (p->state->inputs_available & (1<<input)) {
530 p->program->Base.InputsRead |= (1 << input);
531 return make_ureg(PROGRAM_INPUT, input);
532 }
533 else {
534 GLuint idx = frag_to_vert_attrib( input );
535 return register_param3( p, STATE_INTERNAL, STATE_CURRENT_ATTRIB, idx );
536 }
Keith Whitwell47b29f52005-05-04 11:44:44 +0000537}
538
539
Brian Paul7e807512005-11-05 17:10:45 +0000540static void emit_arg( struct prog_src_register *reg,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000541 struct ureg ureg )
542{
543 reg->File = ureg.file;
544 reg->Index = ureg.idx;
545 reg->Swizzle = ureg.swz;
Keith Whitwellf2802c42005-10-07 09:55:26 +0000546 reg->NegateBase = ureg.negatebase ? 0xf : 0x0;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000547 reg->Abs = ureg.abs;
548 reg->NegateAbs = ureg.negateabs;
549}
550
Brian Paul7e807512005-11-05 17:10:45 +0000551static void emit_dst( struct prog_dst_register *dst,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000552 struct ureg ureg, GLuint mask )
553{
554 dst->File = ureg.file;
555 dst->Index = ureg.idx;
556 dst->WriteMask = mask;
Brian112a1582007-10-23 10:54:50 -0600557 dst->CondMask = COND_TR; /* always pass cond test */
558 dst->CondSwizzle = SWIZZLE_NOOP;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000559}
560
Brian Paul7e807512005-11-05 17:10:45 +0000561static struct prog_instruction *
Keith Whitwell15e75e02005-04-29 15:11:39 +0000562emit_op(struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000563 enum prog_opcode op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000564 struct ureg dest,
565 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000566 GLboolean saturate,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000567 struct ureg src0,
568 struct ureg src1,
569 struct ureg src2 )
570{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000571 GLuint nr = p->program->Base.NumInstructions++;
Brian Paulde997602005-11-12 17:53:14 +0000572 struct prog_instruction *inst = &p->program->Base.Instructions[nr];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000573
Briane69943e2007-10-23 10:23:01 -0600574 assert(nr < MAX_INSTRUCTIONS);
575
Brian Pauld6272e02006-10-29 18:03:16 +0000576 _mesa_init_instructions(inst, 1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000577 inst->Opcode = op;
578
Keith Whitwell47b29f52005-05-04 11:44:44 +0000579 emit_arg( &inst->SrcReg[0], src0 );
580 emit_arg( &inst->SrcReg[1], src1 );
581 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000582
Brian Paule31ac052005-11-20 17:52:40 +0000583 inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000584
585 emit_dst( &inst->DstReg, dest, mask );
586
Brian Paul8fd329d2008-09-26 11:18:06 -0600587#if 0
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000588 /* Accounting for indirection tracking:
589 */
590 if (dest.file == PROGRAM_TEMPORARY)
591 p->temps_output |= 1 << dest.idx;
Brian Paul8fd329d2008-09-26 11:18:06 -0600592#endif
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000593
Keith Whitwell15e75e02005-04-29 15:11:39 +0000594 return inst;
595}
596
597
598static struct ureg emit_arith( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000599 enum prog_opcode op,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000600 struct ureg dest,
601 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000602 GLboolean saturate,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000603 struct ureg src0,
604 struct ureg src1,
605 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000606{
607 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
608
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000609 /* Accounting for indirection tracking:
610 */
611 if (src0.file == PROGRAM_TEMPORARY)
612 p->alu_temps |= 1 << src0.idx;
613
614 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
615 p->alu_temps |= 1 << src1.idx;
616
617 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
618 p->alu_temps |= 1 << src2.idx;
619
620 if (dest.file == PROGRAM_TEMPORARY)
621 p->alu_temps |= 1 << dest.idx;
622
Brian21f99792007-01-09 11:00:21 -0700623 p->program->Base.NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000624 return dest;
625}
626
627static struct ureg emit_texld( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000628 enum prog_opcode op,
Keith Whitwellce721142005-07-11 10:10:38 +0000629 struct ureg dest,
630 GLuint destmask,
631 GLuint tex_unit,
632 GLuint tex_idx,
633 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000634{
Brian Paul7e807512005-11-05 17:10:45 +0000635 struct prog_instruction *inst = emit_op( p, op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000636 dest, destmask,
Brian Paul22db5352005-11-19 23:45:10 +0000637 GL_FALSE, /* don't saturate? */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000638 coord, /* arg 0? */
639 undef,
640 undef);
641
Brian Paul7e807512005-11-05 17:10:45 +0000642 inst->TexSrcTarget = tex_idx;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000643 inst->TexSrcUnit = tex_unit;
644
Brian21f99792007-01-09 11:00:21 -0700645 p->program->Base.NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000646
Brian Paul8fd329d2008-09-26 11:18:06 -0600647 /* Accounting for indirection tracking:
648 */
649 reserve_temp(p, dest);
650
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000651 /* Is this a texture indirection?
652 */
653 if ((coord.file == PROGRAM_TEMPORARY &&
654 (p->temps_output & (1<<coord.idx))) ||
655 (dest.file == PROGRAM_TEMPORARY &&
656 (p->alu_temps & (1<<dest.idx)))) {
Brian21f99792007-01-09 11:00:21 -0700657 p->program->Base.NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000658 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000659 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000660 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000661 }
662
663 return dest;
664}
665
666
Keith Whitwell47b29f52005-05-04 11:44:44 +0000667static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000668 GLfloat s0,
669 GLfloat s1,
670 GLfloat s2,
671 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000672{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000673 GLfloat values[4];
Briana90046f2006-12-15 10:07:26 -0700674 GLuint idx, swizzle;
Brian Paul006fb632008-09-25 18:27:22 -0600675 struct ureg r;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000676 values[0] = s0;
677 values[1] = s1;
678 values[2] = s2;
679 values[3] = s3;
Briana90046f2006-12-15 10:07:26 -0700680 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values, 4,
681 &swizzle );
Brian Paul006fb632008-09-25 18:27:22 -0600682 r = make_ureg(PROGRAM_CONSTANT, idx);
683 r.swz = swizzle;
684 return r;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000685}
686
Keith Whitwelle4902422005-05-11 15:16:35 +0000687#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000688#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
689#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
690#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000691
692
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000693static struct ureg get_one( struct texenv_fragment_program *p )
694{
695 if (is_undef(p->one))
696 p->one = register_scalar_const(p, 1.0);
697 return p->one;
698}
699
700static struct ureg get_half( struct texenv_fragment_program *p )
701{
702 if (is_undef(p->half))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000703 p->half = register_scalar_const(p, 0.5);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000704 return p->half;
705}
706
707static struct ureg get_zero( struct texenv_fragment_program *p )
708{
709 if (is_undef(p->zero))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000710 p->zero = register_scalar_const(p, 0.0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000711 return p->zero;
712}
713
Keith Whitwell15e75e02005-04-29 15:11:39 +0000714
Keith Whitwell15e75e02005-04-29 15:11:39 +0000715static void program_error( struct texenv_fragment_program *p, const char *msg )
716{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000717 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000718 p->error = 1;
719}
720
Keith Whitwell15e75e02005-04-29 15:11:39 +0000721static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000722 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000723{
724 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000725 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000726 assert(!is_undef(p->src_texture[unit]));
727 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000728
Keith Whitwellce721142005-07-11 10:10:38 +0000729 case SRC_TEXTURE0:
730 case SRC_TEXTURE1:
731 case SRC_TEXTURE2:
732 case SRC_TEXTURE3:
733 case SRC_TEXTURE4:
734 case SRC_TEXTURE5:
735 case SRC_TEXTURE6:
736 case SRC_TEXTURE7:
737 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
738 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000739
Keith Whitwellce721142005-07-11 10:10:38 +0000740 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000741 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000742
Keith Whitwellce721142005-07-11 10:10:38 +0000743 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000744 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000745
Keith Whitwellce721142005-07-11 10:10:38 +0000746 case SRC_PREVIOUS:
747 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000748 if (is_undef(p->src_previous))
749 return register_input(p, FRAG_ATTRIB_COL0);
750 else
751 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000752 }
753}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000754
Keith Whitwell15e75e02005-04-29 15:11:39 +0000755static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000756 GLuint mask,
757 GLuint unit,
758 GLuint source,
759 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000760{
761 struct ureg arg, src, one;
762
763 src = get_source(p, source, unit);
764
765 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000766 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000767 /* Get unused tmp,
768 * Emit tmp = 1.0 - arg.xyzw
769 */
770 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000771 one = get_one( p );
Brian Paul7e807512005-11-05 17:10:45 +0000772 return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000773
Keith Whitwellce721142005-07-11 10:10:38 +0000774 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000775 if (mask == WRITEMASK_W)
776 return src;
777 else
Brian Paul22db5352005-11-19 23:45:10 +0000778 return swizzle1( src, SWIZZLE_W );
Keith Whitwellce721142005-07-11 10:10:38 +0000779 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000780 /* Get unused tmp,
781 * Emit tmp = 1.0 - arg.wwww
782 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000783 arg = get_temp(p);
784 one = get_one(p);
Brian Paul7e807512005-11-05 17:10:45 +0000785 return emit_arith(p, OPCODE_SUB, arg, mask, 0,
Brian Paul22db5352005-11-19 23:45:10 +0000786 one, swizzle1(src, SWIZZLE_W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000787 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000788 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000789 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000790 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000791 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000792 default:
793 return src;
794 }
795}
796
Keith Whitwellce721142005-07-11 10:10:38 +0000797static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000798{
Brian Paul22db5352005-11-19 23:45:10 +0000799 GLuint i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000800
801 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000802 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000803 return GL_FALSE;
804
Keith Whitwellce721142005-07-11 10:10:38 +0000805 switch(key->unit[unit].OptA[i].Operand) {
806 case OPR_SRC_ALPHA:
807 switch(key->unit[unit].OptRGB[i].Operand) {
808 case OPR_SRC_COLOR:
809 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000810 break;
811 default:
812 return GL_FALSE;
813 }
814 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000815 case OPR_ONE_MINUS_SRC_ALPHA:
816 switch(key->unit[unit].OptRGB[i].Operand) {
817 case OPR_ONE_MINUS_SRC_COLOR:
818 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000819 break;
820 default:
821 return GL_FALSE;
822 }
823 break;
824 default:
825 return GL_FALSE; /* impossible */
826 }
827 }
828
829 return GL_TRUE;
830}
831
Keith Whitwell15e75e02005-04-29 15:11:39 +0000832static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000833 struct ureg dest,
834 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000835 GLboolean saturate,
Keith Whitwellce721142005-07-11 10:10:38 +0000836 GLuint unit,
837 GLuint nr,
838 GLuint mode,
Brian Pauld9736db2006-05-23 02:44:46 +0000839 const struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000840{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000841 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000842 struct ureg tmp, half;
Brian Paul22db5352005-11-19 23:45:10 +0000843 GLuint i;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000844
Brian Paul00630842005-12-12 15:27:55 +0000845 tmp = undef; /* silence warning (bug 5318) */
846
Keith Whitwell15e75e02005-04-29 15:11:39 +0000847 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000848 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000849
850 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000851 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000852 if (mask == WRITEMASK_XYZW && !saturate)
853 return src[0];
854 else
Brian Paul7e807512005-11-05 17:10:45 +0000855 return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000856 case MODE_MODULATE:
Brian Paul7e807512005-11-05 17:10:45 +0000857 return emit_arith( p, OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000858 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000859 case MODE_ADD:
Brian Paul7e807512005-11-05 17:10:45 +0000860 return emit_arith( p, OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000861 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000862 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000863 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000864 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000865 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000866 half = get_half(p);
Jerome Glisse99da2d32006-01-24 23:04:51 +0000867 tmp = get_temp( p );
Brian Paul7e807512005-11-05 17:10:45 +0000868 emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
869 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000870 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000871 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000872 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
873 */
Brian Paul7e807512005-11-05 17:10:45 +0000874 return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000875
Keith Whitwellce721142005-07-11 10:10:38 +0000876 case MODE_SUBTRACT:
Brian Paul7e807512005-11-05 17:10:45 +0000877 return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000878
Keith Whitwellce721142005-07-11 10:10:38 +0000879 case MODE_DOT3_RGBA:
880 case MODE_DOT3_RGBA_EXT:
881 case MODE_DOT3_RGB_EXT:
882 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000883 struct ureg tmp0 = get_temp( p );
884 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000885 struct ureg neg1 = register_scalar_const(p, -1);
886 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000887
888 /* tmp0 = 2*src0 - 1
889 * tmp1 = 2*src1 - 1
890 *
891 * dst = tmp0 dot3 tmp1
892 */
Brian Paul7e807512005-11-05 17:10:45 +0000893 emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000894 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000895
Brian Paulaa206952005-09-16 18:14:24 +0000896 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000897 tmp1 = tmp0;
898 else
Brian Paul7e807512005-11-05 17:10:45 +0000899 emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000900 two, src[1], neg1);
Brian Paul7e807512005-11-05 17:10:45 +0000901 emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000902 return dest;
903 }
Keith Whitwellce721142005-07-11 10:10:38 +0000904 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000905 /* Arg0 * Arg2 + Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000906 return emit_arith( p, OPCODE_MAD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000907 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000908 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000909 /* Arg0 * Arg2 + Arg1 - 0.5 */
910 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000911 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000912 emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
913 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000914 return dest;
915 }
Keith Whitwellce721142005-07-11 10:10:38 +0000916 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000917 /* Arg0 * Arg2 - Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000918 emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000919 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000920 default:
921 return src[0];
922 }
923}
924
Keith Whitwell15e75e02005-04-29 15:11:39 +0000925
Brian Paul22db5352005-11-19 23:45:10 +0000926/**
927 * Generate instructions for one texture unit's env/combiner mode.
928 */
929static struct ureg
930emit_texenv(struct texenv_fragment_program *p, GLuint unit)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000931{
Keith Whitwellce721142005-07-11 10:10:38 +0000932 struct state_key *key = p->state;
Brian Paul22db5352005-11-19 23:45:10 +0000933 GLboolean saturate = (unit < p->last_tex_stage);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000934 GLuint rgb_shift, alpha_shift;
935 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000936 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000937
Keith Whitwellce721142005-07-11 10:10:38 +0000938 if (!key->unit[unit].enabled) {
939 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000940 }
Keith Whitwellce721142005-07-11 10:10:38 +0000941
942 switch (key->unit[unit].ModeRGB) {
943 case MODE_DOT3_RGB_EXT:
944 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000945 rgb_shift = 0;
946 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000947 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000948 alpha_shift = 0;
949 rgb_shift = 0;
950 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000951 default:
Keith Whitwellce721142005-07-11 10:10:38 +0000952 rgb_shift = key->unit[unit].ScaleShiftRGB;
953 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000954 break;
955 }
Keith Whitwellce721142005-07-11 10:10:38 +0000956
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000957 /* If this is the very last calculation, emit direct to output reg:
958 */
Keith Whitwellce721142005-07-11 10:10:38 +0000959 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000960 unit != p->last_tex_stage ||
961 alpha_shift ||
962 rgb_shift)
963 dest = get_temp( p );
964 else
Brian Paul90ebb582005-11-02 18:06:12 +0000965 dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000966
967 /* Emit the RGB and A combine ops
968 */
Keith Whitwellce721142005-07-11 10:10:38 +0000969 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
970 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000971 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
972 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000973 key->unit[unit].NumArgsRGB,
974 key->unit[unit].ModeRGB,
975 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000976 }
Keith Whitwellce721142005-07-11 10:10:38 +0000977 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
Roland Scheidegger9a451762007-07-03 14:27:41 +0200978 key->unit[unit].ModeRGB == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000979
980 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
981 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000982 key->unit[unit].NumArgsRGB,
983 key->unit[unit].ModeRGB,
984 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000985 }
986 else {
987 /* Need to do something to stop from re-emitting identical
988 * argument calculations here:
989 */
990 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
991 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000992 key->unit[unit].NumArgsRGB,
993 key->unit[unit].ModeRGB,
994 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000995 out = emit_combine( p, dest, WRITEMASK_W, saturate,
996 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000997 key->unit[unit].NumArgsA,
998 key->unit[unit].ModeA,
999 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001000 }
1001
1002 /* Deal with the final shift:
1003 */
1004 if (alpha_shift || rgb_shift) {
1005 if (rgb_shift == alpha_shift) {
José Fonseca53174af2008-05-31 18:14:09 +09001006 shift = register_scalar_const(p, (GLfloat)(1<<rgb_shift));
Keith Whitwell15e75e02005-04-29 15:11:39 +00001007 }
1008 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001009 shift = register_const4f(p,
José Fonseca53174af2008-05-31 18:14:09 +09001010 (GLfloat)(1<<rgb_shift),
1011 (GLfloat)(1<<rgb_shift),
1012 (GLfloat)(1<<rgb_shift),
1013 (GLfloat)(1<<alpha_shift));
Keith Whitwell15e75e02005-04-29 15:11:39 +00001014 }
Brian Paul7e807512005-11-05 17:10:45 +00001015 return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW,
Keith Whitwell15e75e02005-04-29 15:11:39 +00001016 saturate, out, shift, undef );
1017 }
1018 else
1019 return out;
1020}
1021
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001022
Brian Paul22db5352005-11-19 23:45:10 +00001023/**
1024 * Generate instruction for getting a texture source term.
1025 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001026static void load_texture( struct texenv_fragment_program *p, GLuint unit )
1027{
1028 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +00001029 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001030 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
1031 struct ureg tmp = get_tex_temp( p );
1032
Brian Paulbfb5ea32005-07-19 18:20:04 +00001033 if (dim == TEXTURE_UNKNOWN_INDEX)
1034 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +00001035
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001036 /* TODO: Use D0_MASK_XY where possible.
1037 */
Brian1e3b07f2007-12-14 11:16:49 -07001038 if (p->state->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +00001039 p->src_texture[unit] = emit_texld( p, OPCODE_TXP,
1040 tmp, WRITEMASK_XYZW,
1041 unit, dim, texcoord );
Brian1e3b07f2007-12-14 11:16:49 -07001042 p->program->Base.SamplersUsed |= (1 << unit);
Brianfce46122007-12-14 11:42:28 -07001043 /* This identity mapping should already be in place
1044 * (see _mesa_init_program_struct()) but let's be safe.
1045 */
1046 p->program->Base.SamplerUnits[unit] = unit;
Brian1e3b07f2007-12-14 11:16:49 -07001047 }
Aapo Tahkolab8915342006-03-28 10:26:34 +00001048 else
1049 p->src_texture[unit] = get_zero(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001050 }
1051}
1052
Keith Whitwell241b6b72005-05-23 09:50:34 +00001053static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +00001054 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001055{
1056 switch (src) {
Aapo Tahkola4dd8a892006-01-24 20:24:06 +00001057 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001058 load_texture(p, unit);
1059 break;
1060
Keith Whitwellce721142005-07-11 10:10:38 +00001061 case SRC_TEXTURE0:
1062 case SRC_TEXTURE1:
1063 case SRC_TEXTURE2:
1064 case SRC_TEXTURE3:
1065 case SRC_TEXTURE4:
1066 case SRC_TEXTURE5:
1067 case SRC_TEXTURE6:
1068 case SRC_TEXTURE7:
Keith Whitwellce721142005-07-11 10:10:38 +00001069 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001070 break;
1071
1072 default:
1073 break;
1074 }
Keith Whitwell241b6b72005-05-23 09:50:34 +00001075
1076 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001077}
1078
Brian Paul22db5352005-11-19 23:45:10 +00001079
1080/**
1081 * Generate instructions for loading all texture source terms.
1082 */
1083static GLboolean
1084load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001085{
Keith Whitwellce721142005-07-11 10:10:38 +00001086 struct state_key *key = p->state;
Aapo Tahkolab8915342006-03-28 10:26:34 +00001087 GLuint i;
1088
1089 for (i = 0; i < key->unit[unit].NumArgsRGB; i++) {
1090 load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001091 }
Aapo Tahkolab8915342006-03-28 10:26:34 +00001092
1093 for (i = 0; i < key->unit[unit].NumArgsA; i++) {
1094 load_texenv_source( p, key->unit[unit].OptA[i].Source, unit );
1095 }
1096
Keith Whitwell241b6b72005-05-23 09:50:34 +00001097 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001098}
1099
Brian Paul22db5352005-11-19 23:45:10 +00001100
1101/**
1102 * Generate a new fragment program which implements the context's
1103 * current texture env/combine mode.
1104 */
1105static void
Brian Paule998c342006-10-29 21:17:18 +00001106create_new_program(GLcontext *ctx, struct state_key *key,
Brian Paul122629f2006-07-20 16:49:57 +00001107 struct gl_fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001108{
Brian Paule998c342006-10-29 21:17:18 +00001109 struct prog_instruction instBuffer[MAX_INSTRUCTIONS];
Keith Whitwell15e75e02005-04-29 15:11:39 +00001110 struct texenv_fragment_program p;
1111 GLuint unit;
1112 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +00001113
Keith Whitwelle4902422005-05-11 15:16:35 +00001114 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +00001115 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +00001116 p.state = key;
1117 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001118
Brian Paule998c342006-10-29 21:17:18 +00001119 /* During code generation, use locally-allocated instruction buffer,
1120 * then alloc dynamic storage below.
1121 */
1122 p.program->Base.Instructions = instBuffer;
Keith Whitwell276330b2005-05-09 17:58:13 +00001123 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Brian21f99792007-01-09 11:00:21 -07001124 p.program->Base.NumTexIndirections = 1; /* correct? */
1125 p.program->Base.NumTexInstructions = 0;
1126 p.program->Base.NumAluInstructions = 0;
Brian1240eb22007-03-22 08:50:20 -06001127 p.program->Base.String = NULL;
Keith Whitwell9ca88152005-05-10 09:56:02 +00001128 p.program->Base.NumInstructions =
Brian Paule998c342006-10-29 21:17:18 +00001129 p.program->Base.NumTemporaries =
1130 p.program->Base.NumParameters =
1131 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00001132 p.program->Base.Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +00001133
Brian Paulde997602005-11-12 17:53:14 +00001134 p.program->Base.InputsRead = 0;
1135 p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001136
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001137 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1138 p.src_texture[unit] = undef;
1139
Keith Whitwell47b29f52005-05-04 11:44:44 +00001140 p.src_previous = undef;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001141 p.half = undef;
1142 p.zero = undef;
1143 p.one = undef;
1144
Keith Whitwell15e75e02005-04-29 15:11:39 +00001145 p.last_tex_stage = 0;
Brianf18d4e02007-10-29 12:25:46 -06001146 release_temps(ctx, &p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001147
Keith Whitwellce721142005-07-11 10:10:38 +00001148 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001149 /* First pass - to support texture_env_crossbar, first identify
1150 * all referenced texture sources and emit texld instructions
1151 * for each:
1152 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001153 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001154 if (key->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +00001155 load_texunit_sources( &p, unit );
1156 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001157 }
1158
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001159 /* Second pass - emit combine instructions to build final color:
1160 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001161 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001162 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001163 p.src_previous = emit_texenv( &p, unit );
Brian Paul8fd329d2008-09-26 11:18:06 -06001164 reserve_temp(&p, p.src_previous); /* don't re-use this temp reg */
Brianf18d4e02007-10-29 12:25:46 -06001165 release_temps(ctx, &p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001166 }
1167 }
1168
Keith Whitwellce721142005-07-11 10:10:38 +00001169 cf = get_source( &p, SRC_PREVIOUS, 0 );
Brian Paul90ebb582005-11-02 18:06:12 +00001170 out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001171
Keith Whitwellce721142005-07-11 10:10:38 +00001172 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001173 /* Emit specular add.
1174 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001175 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Brian Paul7e807512005-11-05 17:10:45 +00001176 emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
1177 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001178 }
Brian Paulaa206952005-09-16 18:14:24 +00001179 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001180 /* Will wind up in here if no texture enabled or a couple of
1181 * other scenarios (GL_REPLACE for instance).
1182 */
Brian Paul7e807512005-11-05 17:10:45 +00001183 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001184 }
1185
Keith Whitwell47b29f52005-05-04 11:44:44 +00001186 /* Finish up:
1187 */
Brian Paul7e807512005-11-05 17:10:45 +00001188 emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001189
Keith Whitwellce721142005-07-11 10:10:38 +00001190 if (key->fog_enabled) {
1191 /* Pull fog mode from GLcontext, the value in the state key is
1192 * a reduced value and not what is expected in FogOption
1193 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001194 p.program->FogOption = ctx->Fog.Mode;
Brian63be96b2007-09-18 19:29:26 -06001195 p.program->Base.InputsRead |= FRAG_BIT_FOGC; /* XXX new */
Keith Whitwellce721142005-07-11 10:10:38 +00001196 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001197 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001198
Brian21f99792007-01-09 11:00:21 -07001199 if (p.program->Base.NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001200 program_error(&p, "Exceeded max nr indirect texture lookups");
1201
Brian21f99792007-01-09 11:00:21 -07001202 if (p.program->Base.NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001203 program_error(&p, "Exceeded max TEX instructions");
1204
Brian21f99792007-01-09 11:00:21 -07001205 if (p.program->Base.NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001206 program_error(&p, "Exceeded max ALU instructions");
1207
Brian Paul5d7b49f2005-11-19 23:12:20 +00001208 ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS);
Keith Whitwell8b88f622005-05-10 11:39:50 +00001209
Brian Paule998c342006-10-29 21:17:18 +00001210 /* Allocate final instruction array */
Brian3bf8d2a2007-09-25 15:18:51 -06001211 p.program->Base.Instructions
1212 = _mesa_alloc_instructions(p.program->Base.NumInstructions);
1213 if (!p.program->Base.Instructions) {
Brian Paule998c342006-10-29 21:17:18 +00001214 _mesa_error(ctx, GL_OUT_OF_MEMORY,
1215 "generating tex env program");
1216 return;
1217 }
Brian3bf8d2a2007-09-25 15:18:51 -06001218 _mesa_copy_instructions(p.program->Base.Instructions, instBuffer,
1219 p.program->Base.NumInstructions);
1220
1221 if (p.program->FogOption) {
1222 _mesa_append_fog_code(ctx, p.program);
1223 p.program->FogOption = GL_NONE;
1224 }
1225
Brian Paule998c342006-10-29 21:17:18 +00001226
Keith Whitwelldbeea252005-05-10 13:57:50 +00001227 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001228 */
Brian Paule998c342006-10-29 21:17:18 +00001229 if (ctx->Driver.ProgramStringNotify) {
1230 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1231 &p.program->Base );
1232 }
Keith Whitwelldbeea252005-05-10 13:57:50 +00001233
Brian Paule998c342006-10-29 21:17:18 +00001234 if (DISASSEM) {
1235 _mesa_print_program(&p.program->Base);
1236 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001237 }
Keith Whitwell15e75e02005-04-29 15:11:39 +00001238}
1239
Brian Paul5d7b49f2005-11-19 23:12:20 +00001240
Briana90046f2006-12-15 10:07:26 -07001241/**
Brian83ce6c52007-10-29 11:23:02 -06001242 * Return a fragment program which implements the current
1243 * fixed-function texture, fog and color-sum operations.
1244 */
1245struct gl_fragment_program *
1246_mesa_get_fixed_func_fragment_program(GLcontext *ctx)
1247{
1248 struct gl_fragment_program *prog;
1249 struct state_key key;
Brian83ce6c52007-10-29 11:23:02 -06001250
1251 make_state_key(ctx, &key);
Brian83ce6c52007-10-29 11:23:02 -06001252
Brianf4a5ea22007-10-31 12:45:32 -06001253 prog = (struct gl_fragment_program *)
1254 _mesa_search_program_cache(ctx->FragmentProgram.Cache,
1255 &key, sizeof(key));
Brian83ce6c52007-10-29 11:23:02 -06001256
1257 if (!prog) {
Brian83ce6c52007-10-29 11:23:02 -06001258 prog = (struct gl_fragment_program *)
1259 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
1260
1261 create_new_program(ctx, &key, prog);
1262
Brianf4a5ea22007-10-31 12:45:32 -06001263 _mesa_program_cache_insert(ctx, ctx->FragmentProgram.Cache,
1264 &key, sizeof(key), &prog->Base);
Brian83ce6c52007-10-29 11:23:02 -06001265 }
1266
1267 return prog;
1268}
1269
1270
1271
1272/**
Briana90046f2006-12-15 10:07:26 -07001273 * If _MaintainTexEnvProgram is set we'll generate a fragment program that
1274 * implements the current texture env/combine mode.
1275 * This function generates that program and puts it into effect.
1276 */
1277void
1278_mesa_UpdateTexEnvProgram( GLcontext *ctx )
Keith Whitwellce721142005-07-11 10:10:38 +00001279{
Brian Paul122629f2006-07-20 16:49:57 +00001280 const struct gl_fragment_program *prev = ctx->FragmentProgram._Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001281
Briana90046f2006-12-15 10:07:26 -07001282 ASSERT(ctx->FragmentProgram._MaintainTexEnvProgram);
1283
1284 /* If a conventional fragment program/shader isn't in effect... */
Brianefcfdbd2007-02-24 15:51:41 -07001285 if (!ctx->FragmentProgram._Enabled &&
Briand781cdc2007-10-02 16:55:21 -06001286 (!ctx->Shader.CurrentProgram ||
1287 !ctx->Shader.CurrentProgram->FragmentProgram) ) {
Keith Whitwellce721142005-07-11 10:10:38 +00001288
Brian83ce6c52007-10-29 11:23:02 -06001289 ctx->FragmentProgram._Current
1290 = ctx->FragmentProgram._TexEnvProgram
1291 = _mesa_get_fixed_func_fragment_program(ctx);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001292 }
Keith Whitwellc3626a92005-11-01 17:25:49 +00001293
1294 /* Tell the driver about the change. Could define a new target for
1295 * this?
1296 */
Brian Paul5d7b49f2005-11-19 23:12:20 +00001297 if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) {
1298 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
Briana90046f2006-12-15 10:07:26 -07001299 (struct gl_program *) ctx->FragmentProgram._Current);
Brian Paul5d7b49f2005-11-19 23:12:20 +00001300 }
Keith Whitwellce721142005-07-11 10:10:38 +00001301}