blob: 5db2f6249c4575ed3b5c50ba48998137dcb211ba [file] [log] [blame]
Keith Whitwell15e75e02005-04-29 15:11:39 +00001/**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
Keith Whitwell15e75e02005-04-29 15:11:39 +000028#include "glheader.h"
29#include "macros.h"
30#include "enums.h"
31#include "texenvprogram.h"
32
33#include "shader/program.h"
Brian Paul7e807512005-11-05 17:10:45 +000034#include "shader/program_instruction.h"
Keith Whitwell15e75e02005-04-29 15:11:39 +000035
Brian Paul5d7b49f2005-11-19 23:12:20 +000036#define MAX_INSTRUCTIONS 100
Keith Whitwell15e75e02005-04-29 15:11:39 +000037
Keith Whitwell269e3892005-05-12 10:28:43 +000038#define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)
Keith Whitwell15e75e02005-04-29 15:11:39 +000039
Keith Whitwellce721142005-07-11 10:10:38 +000040struct mode_opt {
Brian Paul5d7b49f2005-11-19 23:12:20 +000041 GLuint Source:4;
42 GLuint Operand:3;
Keith Whitwellce721142005-07-11 10:10:38 +000043};
44
45struct state_key {
Brian Paul5d7b49f2005-11-19 23:12:20 +000046 GLbitfield enabled_units;
47 GLuint separate_specular:1;
48 GLuint fog_enabled:1;
49 GLuint fog_mode:2;
Keith Whitwellce721142005-07-11 10:10:38 +000050
51 struct {
Brian Paul5d7b49f2005-11-19 23:12:20 +000052 GLuint enabled:1;
53 GLuint source_index:3; /* one of TEXTURE_1D/2D/3D/CUBE/RECT_INDEX */
54 GLuint ScaleShiftRGB:2;
55 GLuint ScaleShiftA:2;
Keith Whitwellce721142005-07-11 10:10:38 +000056
Brian Paul5d7b49f2005-11-19 23:12:20 +000057 GLuint NumArgsRGB:2;
58 GLuint ModeRGB:4;
Keith Whitwellce721142005-07-11 10:10:38 +000059 struct mode_opt OptRGB[3];
60
Brian Paul5d7b49f2005-11-19 23:12:20 +000061 GLuint NumArgsA:2;
62 GLuint ModeA:4;
Keith Whitwellce721142005-07-11 10:10:38 +000063 struct mode_opt OptA[3];
64 } unit[8];
65};
66
67#define FOG_LINEAR 0
68#define FOG_EXP 1
69#define FOG_EXP2 2
70#define FOG_UNKNOWN 3
71
72static GLuint translate_fog_mode( GLenum mode )
73{
74 switch (mode) {
75 case GL_LINEAR: return FOG_LINEAR;
76 case GL_EXP: return FOG_EXP;
77 case GL_EXP2: return FOG_EXP2;
78 default: return FOG_UNKNOWN;
79 }
80}
81
82#define OPR_SRC_COLOR 0
83#define OPR_ONE_MINUS_SRC_COLOR 1
84#define OPR_SRC_ALPHA 2
85#define OPR_ONE_MINUS_SRC_ALPHA 3
86#define OPR_ZERO 4
87#define OPR_ONE 5
88#define OPR_UNKNOWN 7
89
90static GLuint translate_operand( GLenum operand )
91{
92 switch (operand) {
93 case GL_SRC_COLOR: return OPR_SRC_COLOR;
94 case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR;
95 case GL_SRC_ALPHA: return OPR_SRC_ALPHA;
96 case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA;
97 case GL_ZERO: return OPR_ZERO;
98 case GL_ONE: return OPR_ONE;
99 default: return OPR_UNKNOWN;
100 }
101}
102
103#define SRC_TEXTURE 0
104#define SRC_TEXTURE0 1
105#define SRC_TEXTURE1 2
106#define SRC_TEXTURE2 3
107#define SRC_TEXTURE3 4
108#define SRC_TEXTURE4 5
109#define SRC_TEXTURE5 6
110#define SRC_TEXTURE6 7
111#define SRC_TEXTURE7 8
112#define SRC_CONSTANT 9
113#define SRC_PRIMARY_COLOR 10
114#define SRC_PREVIOUS 11
115#define SRC_UNKNOWN 15
116
117static GLuint translate_source( GLenum src )
118{
119 switch (src) {
120 case GL_TEXTURE: return SRC_TEXTURE;
121 case GL_TEXTURE0:
122 case GL_TEXTURE1:
123 case GL_TEXTURE2:
124 case GL_TEXTURE3:
125 case GL_TEXTURE4:
126 case GL_TEXTURE5:
127 case GL_TEXTURE6:
128 case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0);
129 case GL_CONSTANT: return SRC_CONSTANT;
130 case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR;
131 case GL_PREVIOUS: return SRC_PREVIOUS;
132 default: return SRC_UNKNOWN;
133 }
134}
135
136#define MODE_REPLACE 0
137#define MODE_MODULATE 1
138#define MODE_ADD 2
139#define MODE_ADD_SIGNED 3
140#define MODE_INTERPOLATE 4
141#define MODE_SUBTRACT 5
142#define MODE_DOT3_RGB 6
143#define MODE_DOT3_RGB_EXT 7
144#define MODE_DOT3_RGBA 8
145#define MODE_DOT3_RGBA_EXT 9
146#define MODE_MODULATE_ADD_ATI 10
147#define MODE_MODULATE_SIGNED_ADD_ATI 11
148#define MODE_MODULATE_SUBTRACT_ATI 12
149#define MODE_UNKNOWN 15
150
151static GLuint translate_mode( GLenum mode )
152{
153 switch (mode) {
154 case GL_REPLACE: return MODE_REPLACE;
155 case GL_MODULATE: return MODE_MODULATE;
156 case GL_ADD: return MODE_ADD;
157 case GL_ADD_SIGNED: return MODE_ADD_SIGNED;
158 case GL_INTERPOLATE: return MODE_INTERPOLATE;
159 case GL_SUBTRACT: return MODE_SUBTRACT;
160 case GL_DOT3_RGB: return MODE_DOT3_RGB;
161 case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT;
162 case GL_DOT3_RGBA: return MODE_DOT3_RGBA;
163 case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT;
164 case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI;
165 case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI;
166 case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI;
167 default: return MODE_UNKNOWN;
168 }
169}
170
171#define TEXTURE_UNKNOWN_INDEX 7
Brian Paule00ac112005-09-15 05:00:45 +0000172static GLuint translate_tex_src_bit( GLbitfield bit )
Keith Whitwellce721142005-07-11 10:10:38 +0000173{
174 switch (bit) {
175 case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;
176 case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX;
177 case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX;
178 case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX;
179 case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX;
180 default: return TEXTURE_UNKNOWN_INDEX;
181 }
182}
183
Brian Paul22db5352005-11-19 23:45:10 +0000184/**
185 * Examine current texture environment state and generate a unique
186 * key to identify it.
187 */
Keith Whitwell8065c122006-05-22 16:09:27 +0000188static void make_state_key( GLcontext *ctx, struct state_key *key )
Keith Whitwellce721142005-07-11 10:10:38 +0000189{
Keith Whitwellce721142005-07-11 10:10:38 +0000190 GLuint i, j;
191
Keith Whitwell8065c122006-05-22 16:09:27 +0000192 memset(key, 0, sizeof(*key));
193
Keith Whitwellce721142005-07-11 10:10:38 +0000194 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
Brian Pauld9736db2006-05-23 02:44:46 +0000195 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
Keith Whitwellce721142005-07-11 10:10:38 +0000196
197 if (!texUnit->_ReallyEnabled)
198 continue;
199
200 key->unit[i].enabled = 1;
201 key->enabled_units |= (1<<i);
202
203 key->unit[i].source_index =
204 translate_tex_src_bit(texUnit->_ReallyEnabled);
205
206 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
207 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
208
209 key->unit[i].ModeRGB =
210 translate_mode(texUnit->_CurrentCombine->ModeRGB);
211 key->unit[i].ModeA =
212 translate_mode(texUnit->_CurrentCombine->ModeA);
213
214 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
Keith Whitwell64da1612006-05-22 14:30:58 +0000215 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftA;
Keith Whitwellce721142005-07-11 10:10:38 +0000216
217 for (j=0;j<3;j++) {
218 key->unit[i].OptRGB[j].Operand =
219 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
220 key->unit[i].OptA[j].Operand =
221 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
222 key->unit[i].OptRGB[j].Source =
223 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
224 key->unit[i].OptA[j].Source =
225 translate_source(texUnit->_CurrentCombine->SourceA[j]);
226 }
227 }
228
229 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
230 key->separate_specular = 1;
231
232 if (ctx->Fog.Enabled) {
233 key->fog_enabled = 1;
234 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
235 }
Keith Whitwellce721142005-07-11 10:10:38 +0000236}
237
Keith Whitwell15e75e02005-04-29 15:11:39 +0000238/* Use uregs to represent registers internally, translate to Mesa's
239 * expected formats on emit.
240 *
241 * NOTE: These are passed by value extensively in this file rather
242 * than as usual by pointer reference. If this disturbs you, try
243 * remembering they are just 32bits in size.
244 *
245 * GCC is smart enough to deal with these dword-sized structures in
246 * much the same way as if I had defined them as dwords and was using
247 * macros to access and set the fields. This is much nicer and easier
248 * to evolve.
249 */
250struct ureg {
251 GLuint file:4;
252 GLuint idx:8;
253 GLuint negatebase:1;
254 GLuint abs:1;
255 GLuint negateabs:1;
256 GLuint swz:12;
257 GLuint pad:5;
258};
259
Brian Paul13abf912006-04-13 19:17:13 +0000260static const struct ureg undef = {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000261 ~0,
262 ~0,
263 0,
264 0,
265 0,
266 0,
267 0
268};
269
Keith Whitwell15e75e02005-04-29 15:11:39 +0000270
Keith Whitwell15e75e02005-04-29 15:11:39 +0000271/* State used to build the fragment program:
272 */
273struct texenv_fragment_program {
Keith Whitwell47b29f52005-05-04 11:44:44 +0000274 struct fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000275 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000276 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000277
Brian Paulc8d17412005-12-14 03:06:16 +0000278 GLbitfield alu_temps; /* Track texture indirections, see spec. */
279 GLbitfield temps_output; /* Track texture indirections, see spec. */
280 GLbitfield temp_in_use; /* Tracks temporary regs which are in use. */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000281 GLboolean error;
282
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000283 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000284 /* Reg containing each texture unit's sampled texture color,
285 * else undef.
286 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000287
288 struct ureg src_previous; /* Reg containing color from previous
289 * stage. May need to be decl'd.
290 */
291
292 GLuint last_tex_stage; /* Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000293
294 struct ureg half;
295 struct ureg one;
296 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000297};
298
299
300
301static struct ureg make_ureg(GLuint file, GLuint idx)
302{
303 struct ureg reg;
304 reg.file = file;
305 reg.idx = idx;
306 reg.negatebase = 0;
307 reg.abs = 0;
308 reg.negateabs = 0;
309 reg.swz = SWIZZLE_NOOP;
310 reg.pad = 0;
311 return reg;
312}
313
314static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
315{
316 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
317 GET_SWZ(reg.swz, y),
318 GET_SWZ(reg.swz, z),
319 GET_SWZ(reg.swz, w));
320
321 return reg;
322}
323
324static struct ureg swizzle1( struct ureg reg, int x )
325{
326 return swizzle(reg, x, x, x, x);
327}
328
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000329static struct ureg negate( struct ureg reg )
330{
331 reg.negatebase ^= 1;
332 return reg;
333}
334
Keith Whitwell15e75e02005-04-29 15:11:39 +0000335static GLboolean is_undef( struct ureg reg )
336{
337 return reg.file == 0xf;
338}
339
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000340
Keith Whitwell15e75e02005-04-29 15:11:39 +0000341static struct ureg get_temp( struct texenv_fragment_program *p )
342{
Brian Paul13abf912006-04-13 19:17:13 +0000343 GLint bit;
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000344
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000345 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000346 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000347 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000348
349 /* Then any unused temporary:
350 */
351 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000352 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000353
Keith Whitwell15e75e02005-04-29 15:11:39 +0000354 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000355 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000356 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000357 }
358
Brian Paul13abf912006-04-13 19:17:13 +0000359 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000360 p->program->Base.NumTemporaries = bit;
361
Keith Whitwell93cd9232005-05-11 08:30:23 +0000362 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000363 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
364}
365
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000366static struct ureg get_tex_temp( struct texenv_fragment_program *p )
367{
368 int bit;
369
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000370 /* First try to find availble temp not previously used (to avoid
371 * starting a new texture indirection). According to the spec, the
372 * ~p->temps_output isn't necessary, but will keep it there for
373 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000374 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000375 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000376
377 /* Then any unused temporary:
378 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000379 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000380 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000381
382 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000383 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000384 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000385 }
386
Brian Paul13abf912006-04-13 19:17:13 +0000387 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000388 p->program->Base.NumTemporaries = bit;
389
Keith Whitwell93cd9232005-05-11 08:30:23 +0000390 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000391 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
392}
393
Keith Whitwell15e75e02005-04-29 15:11:39 +0000394
395static void release_temps( struct texenv_fragment_program *p )
396{
Brian Paul05051032005-11-01 04:36:33 +0000397 GLuint max_temp = p->ctx->Const.FragmentProgram.MaxTemps;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000398
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000399 /* KW: To support tex_env_crossbar, don't release the registers in
400 * temps_output.
401 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000402 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000403 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000404 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000405 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000406}
407
408
Keith Whitwell47b29f52005-05-04 11:44:44 +0000409static struct ureg register_param6( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000410 GLint s0,
411 GLint s1,
412 GLint s2,
413 GLint s3,
414 GLint s4,
415 GLint s5)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000416{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000417 GLint tokens[6];
418 GLuint idx;
419 tokens[0] = s0;
420 tokens[1] = s1;
421 tokens[2] = s2;
422 tokens[3] = s3;
423 tokens[4] = s4;
424 tokens[5] = s5;
Brian Paulde997602005-11-12 17:53:14 +0000425 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000426 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000427}
428
Keith Whitwell47b29f52005-05-04 11:44:44 +0000429
430#define register_param1(p,s0) register_param6(p,s0,0,0,0,0,0)
431#define register_param2(p,s0,s1) register_param6(p,s0,s1,0,0,0,0)
432#define register_param3(p,s0,s1,s2) register_param6(p,s0,s1,s2,0,0,0)
433#define register_param4(p,s0,s1,s2,s3) register_param6(p,s0,s1,s2,s3,0,0)
434
435
436static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
437{
Brian Paulde997602005-11-12 17:53:14 +0000438 p->program->Base.InputsRead |= (1 << input);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000439 return make_ureg(PROGRAM_INPUT, input);
440}
441
442
Brian Paul7e807512005-11-05 17:10:45 +0000443static void emit_arg( struct prog_src_register *reg,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000444 struct ureg ureg )
445{
446 reg->File = ureg.file;
447 reg->Index = ureg.idx;
448 reg->Swizzle = ureg.swz;
Keith Whitwellf2802c42005-10-07 09:55:26 +0000449 reg->NegateBase = ureg.negatebase ? 0xf : 0x0;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000450 reg->Abs = ureg.abs;
451 reg->NegateAbs = ureg.negateabs;
452}
453
Brian Paul7e807512005-11-05 17:10:45 +0000454static void emit_dst( struct prog_dst_register *dst,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000455 struct ureg ureg, GLuint mask )
456{
457 dst->File = ureg.file;
458 dst->Index = ureg.idx;
459 dst->WriteMask = mask;
460 dst->CondMask = 0;
461 dst->CondSwizzle = 0;
462}
463
Brian Paul7e807512005-11-05 17:10:45 +0000464static struct prog_instruction *
Keith Whitwell15e75e02005-04-29 15:11:39 +0000465emit_op(struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000466 enum prog_opcode op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000467 struct ureg dest,
468 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000469 GLboolean saturate,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000470 struct ureg src0,
471 struct ureg src1,
472 struct ureg src2 )
473{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000474 GLuint nr = p->program->Base.NumInstructions++;
Brian Paulde997602005-11-12 17:53:14 +0000475 struct prog_instruction *inst = &p->program->Base.Instructions[nr];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000476
Brian Paul5d7b49f2005-11-19 23:12:20 +0000477 _mesa_init_instruction(inst);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000478 inst->Opcode = op;
479
Keith Whitwell47b29f52005-05-04 11:44:44 +0000480 emit_arg( &inst->SrcReg[0], src0 );
481 emit_arg( &inst->SrcReg[1], src1 );
482 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000483
Brian Paule31ac052005-11-20 17:52:40 +0000484 inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000485
486 emit_dst( &inst->DstReg, dest, mask );
487
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000488 /* Accounting for indirection tracking:
489 */
490 if (dest.file == PROGRAM_TEMPORARY)
491 p->temps_output |= 1 << dest.idx;
492
Keith Whitwell15e75e02005-04-29 15:11:39 +0000493 return inst;
494}
495
496
497static struct ureg emit_arith( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000498 enum prog_opcode op,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000499 struct ureg dest,
500 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000501 GLboolean saturate,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000502 struct ureg src0,
503 struct ureg src1,
504 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000505{
506 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
507
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000508 /* Accounting for indirection tracking:
509 */
510 if (src0.file == PROGRAM_TEMPORARY)
511 p->alu_temps |= 1 << src0.idx;
512
513 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
514 p->alu_temps |= 1 << src1.idx;
515
516 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
517 p->alu_temps |= 1 << src2.idx;
518
519 if (dest.file == PROGRAM_TEMPORARY)
520 p->alu_temps |= 1 << dest.idx;
521
Keith Whitwell47b29f52005-05-04 11:44:44 +0000522 p->program->NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000523 return dest;
524}
525
526static struct ureg emit_texld( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000527 enum prog_opcode op,
Keith Whitwellce721142005-07-11 10:10:38 +0000528 struct ureg dest,
529 GLuint destmask,
530 GLuint tex_unit,
531 GLuint tex_idx,
532 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000533{
Brian Paul7e807512005-11-05 17:10:45 +0000534 struct prog_instruction *inst = emit_op( p, op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000535 dest, destmask,
Brian Paul22db5352005-11-19 23:45:10 +0000536 GL_FALSE, /* don't saturate? */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000537 coord, /* arg 0? */
538 undef,
539 undef);
540
Brian Paul7e807512005-11-05 17:10:45 +0000541 inst->TexSrcTarget = tex_idx;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000542 inst->TexSrcUnit = tex_unit;
543
Keith Whitwell47b29f52005-05-04 11:44:44 +0000544 p->program->NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000545
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000546 /* Is this a texture indirection?
547 */
548 if ((coord.file == PROGRAM_TEMPORARY &&
549 (p->temps_output & (1<<coord.idx))) ||
550 (dest.file == PROGRAM_TEMPORARY &&
551 (p->alu_temps & (1<<dest.idx)))) {
Keith Whitwell47b29f52005-05-04 11:44:44 +0000552 p->program->NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000553 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000554 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000555 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000556 }
557
558 return dest;
559}
560
561
Keith Whitwell47b29f52005-05-04 11:44:44 +0000562static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000563 GLfloat s0,
564 GLfloat s1,
565 GLfloat s2,
566 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000567{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000568 GLfloat values[4];
569 GLuint idx;
570 values[0] = s0;
571 values[1] = s1;
572 values[2] = s2;
573 values[3] = s3;
Brian Paulde997602005-11-12 17:53:14 +0000574 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000575 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000576}
577
Keith Whitwelle4902422005-05-11 15:16:35 +0000578#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000579#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
580#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
581#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000582
583
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000584static struct ureg get_one( struct texenv_fragment_program *p )
585{
586 if (is_undef(p->one))
587 p->one = register_scalar_const(p, 1.0);
588 return p->one;
589}
590
591static struct ureg get_half( struct texenv_fragment_program *p )
592{
593 if (is_undef(p->half))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000594 p->half = register_scalar_const(p, 0.5);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000595 return p->half;
596}
597
598static struct ureg get_zero( struct texenv_fragment_program *p )
599{
600 if (is_undef(p->zero))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000601 p->zero = register_scalar_const(p, 0.0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000602 return p->zero;
603}
604
Keith Whitwell15e75e02005-04-29 15:11:39 +0000605
Keith Whitwell15e75e02005-04-29 15:11:39 +0000606static void program_error( struct texenv_fragment_program *p, const char *msg )
607{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000608 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000609 p->error = 1;
610}
611
Keith Whitwell15e75e02005-04-29 15:11:39 +0000612static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000613 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000614{
615 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000616 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000617 assert(!is_undef(p->src_texture[unit]));
618 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000619
Keith Whitwellce721142005-07-11 10:10:38 +0000620 case SRC_TEXTURE0:
621 case SRC_TEXTURE1:
622 case SRC_TEXTURE2:
623 case SRC_TEXTURE3:
624 case SRC_TEXTURE4:
625 case SRC_TEXTURE5:
626 case SRC_TEXTURE6:
627 case SRC_TEXTURE7:
628 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
629 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000630
Keith Whitwellce721142005-07-11 10:10:38 +0000631 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000632 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000633
Keith Whitwellce721142005-07-11 10:10:38 +0000634 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000635 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000636
Keith Whitwellce721142005-07-11 10:10:38 +0000637 case SRC_PREVIOUS:
638 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000639 if (is_undef(p->src_previous))
640 return register_input(p, FRAG_ATTRIB_COL0);
641 else
642 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000643 }
644}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000645
Keith Whitwell15e75e02005-04-29 15:11:39 +0000646static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000647 GLuint mask,
648 GLuint unit,
649 GLuint source,
650 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000651{
652 struct ureg arg, src, one;
653
654 src = get_source(p, source, unit);
655
656 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000657 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000658 /* Get unused tmp,
659 * Emit tmp = 1.0 - arg.xyzw
660 */
661 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000662 one = get_one( p );
Brian Paul7e807512005-11-05 17:10:45 +0000663 return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000664
Keith Whitwellce721142005-07-11 10:10:38 +0000665 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000666 if (mask == WRITEMASK_W)
667 return src;
668 else
Brian Paul22db5352005-11-19 23:45:10 +0000669 return swizzle1( src, SWIZZLE_W );
Keith Whitwellce721142005-07-11 10:10:38 +0000670 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000671 /* Get unused tmp,
672 * Emit tmp = 1.0 - arg.wwww
673 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000674 arg = get_temp(p);
675 one = get_one(p);
Brian Paul7e807512005-11-05 17:10:45 +0000676 return emit_arith(p, OPCODE_SUB, arg, mask, 0,
Brian Paul22db5352005-11-19 23:45:10 +0000677 one, swizzle1(src, SWIZZLE_W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000678 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000679 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000680 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000681 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000682 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000683 default:
684 return src;
685 }
686}
687
Keith Whitwellce721142005-07-11 10:10:38 +0000688static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000689{
Brian Paul22db5352005-11-19 23:45:10 +0000690 GLuint i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000691
692 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000693 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000694 return GL_FALSE;
695
Keith Whitwellce721142005-07-11 10:10:38 +0000696 switch(key->unit[unit].OptA[i].Operand) {
697 case OPR_SRC_ALPHA:
698 switch(key->unit[unit].OptRGB[i].Operand) {
699 case OPR_SRC_COLOR:
700 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000701 break;
702 default:
703 return GL_FALSE;
704 }
705 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000706 case OPR_ONE_MINUS_SRC_ALPHA:
707 switch(key->unit[unit].OptRGB[i].Operand) {
708 case OPR_ONE_MINUS_SRC_COLOR:
709 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000710 break;
711 default:
712 return GL_FALSE;
713 }
714 break;
715 default:
716 return GL_FALSE; /* impossible */
717 }
718 }
719
720 return GL_TRUE;
721}
722
Keith Whitwell15e75e02005-04-29 15:11:39 +0000723static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000724 struct ureg dest,
725 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000726 GLboolean saturate,
Keith Whitwellce721142005-07-11 10:10:38 +0000727 GLuint unit,
728 GLuint nr,
729 GLuint mode,
Brian Pauld9736db2006-05-23 02:44:46 +0000730 const struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000731{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000732 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000733 struct ureg tmp, half;
Brian Paul22db5352005-11-19 23:45:10 +0000734 GLuint i;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000735
Brian Paul00630842005-12-12 15:27:55 +0000736 tmp = undef; /* silence warning (bug 5318) */
737
Keith Whitwell15e75e02005-04-29 15:11:39 +0000738 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000739 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000740
741 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000742 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000743 if (mask == WRITEMASK_XYZW && !saturate)
744 return src[0];
745 else
Brian Paul7e807512005-11-05 17:10:45 +0000746 return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000747 case MODE_MODULATE:
Brian Paul7e807512005-11-05 17:10:45 +0000748 return emit_arith( p, OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000749 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000750 case MODE_ADD:
Brian Paul7e807512005-11-05 17:10:45 +0000751 return emit_arith( p, OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000752 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000753 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000754 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000755 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000756 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000757 half = get_half(p);
Jerome Glisse99da2d32006-01-24 23:04:51 +0000758 tmp = get_temp( p );
Brian Paul7e807512005-11-05 17:10:45 +0000759 emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
760 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000761 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000762 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000763 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
764 */
Brian Paul7e807512005-11-05 17:10:45 +0000765 return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000766
Keith Whitwellce721142005-07-11 10:10:38 +0000767 case MODE_SUBTRACT:
Brian Paul7e807512005-11-05 17:10:45 +0000768 return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000769
Keith Whitwellce721142005-07-11 10:10:38 +0000770 case MODE_DOT3_RGBA:
771 case MODE_DOT3_RGBA_EXT:
772 case MODE_DOT3_RGB_EXT:
773 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000774 struct ureg tmp0 = get_temp( p );
775 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000776 struct ureg neg1 = register_scalar_const(p, -1);
777 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000778
779 /* tmp0 = 2*src0 - 1
780 * tmp1 = 2*src1 - 1
781 *
782 * dst = tmp0 dot3 tmp1
783 */
Brian Paul7e807512005-11-05 17:10:45 +0000784 emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000785 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000786
Brian Paulaa206952005-09-16 18:14:24 +0000787 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000788 tmp1 = tmp0;
789 else
Brian Paul7e807512005-11-05 17:10:45 +0000790 emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000791 two, src[1], neg1);
Brian Paul7e807512005-11-05 17:10:45 +0000792 emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000793 return dest;
794 }
Keith Whitwellce721142005-07-11 10:10:38 +0000795 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000796 /* Arg0 * Arg2 + Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000797 return emit_arith( p, OPCODE_MAD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000798 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000799 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000800 /* Arg0 * Arg2 + Arg1 - 0.5 */
801 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000802 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000803 emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
804 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000805 return dest;
806 }
Keith Whitwellce721142005-07-11 10:10:38 +0000807 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000808 /* Arg0 * Arg2 - Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000809 emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000810 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000811 default:
812 return src[0];
813 }
814}
815
Keith Whitwell15e75e02005-04-29 15:11:39 +0000816
Brian Paul22db5352005-11-19 23:45:10 +0000817/**
818 * Generate instructions for one texture unit's env/combiner mode.
819 */
820static struct ureg
821emit_texenv(struct texenv_fragment_program *p, GLuint unit)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000822{
Keith Whitwellce721142005-07-11 10:10:38 +0000823 struct state_key *key = p->state;
Brian Paul22db5352005-11-19 23:45:10 +0000824 GLboolean saturate = (unit < p->last_tex_stage);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000825 GLuint rgb_shift, alpha_shift;
826 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000827 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000828
Keith Whitwellce721142005-07-11 10:10:38 +0000829 if (!key->unit[unit].enabled) {
830 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000831 }
Keith Whitwellce721142005-07-11 10:10:38 +0000832
833 switch (key->unit[unit].ModeRGB) {
834 case MODE_DOT3_RGB_EXT:
835 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000836 rgb_shift = 0;
837 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000838 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000839 alpha_shift = 0;
840 rgb_shift = 0;
841 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000842 default:
Keith Whitwellce721142005-07-11 10:10:38 +0000843 rgb_shift = key->unit[unit].ScaleShiftRGB;
844 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000845 break;
846 }
Keith Whitwellce721142005-07-11 10:10:38 +0000847
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000848 /* If this is the very last calculation, emit direct to output reg:
849 */
Keith Whitwellce721142005-07-11 10:10:38 +0000850 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000851 unit != p->last_tex_stage ||
852 alpha_shift ||
853 rgb_shift)
854 dest = get_temp( p );
855 else
Brian Paul90ebb582005-11-02 18:06:12 +0000856 dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000857
858 /* Emit the RGB and A combine ops
859 */
Keith Whitwellce721142005-07-11 10:10:38 +0000860 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
861 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000862 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
863 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000864 key->unit[unit].NumArgsRGB,
865 key->unit[unit].ModeRGB,
866 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000867 }
Keith Whitwellce721142005-07-11 10:10:38 +0000868 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
869 key->unit[unit].ModeA == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000870
871 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
872 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000873 key->unit[unit].NumArgsRGB,
874 key->unit[unit].ModeRGB,
875 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000876 }
877 else {
878 /* Need to do something to stop from re-emitting identical
879 * argument calculations here:
880 */
881 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
882 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000883 key->unit[unit].NumArgsRGB,
884 key->unit[unit].ModeRGB,
885 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000886 out = emit_combine( p, dest, WRITEMASK_W, saturate,
887 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000888 key->unit[unit].NumArgsA,
889 key->unit[unit].ModeA,
890 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000891 }
892
893 /* Deal with the final shift:
894 */
895 if (alpha_shift || rgb_shift) {
896 if (rgb_shift == alpha_shift) {
Keith Whitwelle4902422005-05-11 15:16:35 +0000897 shift = register_scalar_const(p, 1<<rgb_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000898 }
899 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000900 shift = register_const4f(p,
901 1<<rgb_shift,
902 1<<rgb_shift,
903 1<<rgb_shift,
904 1<<alpha_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000905 }
Brian Paul7e807512005-11-05 17:10:45 +0000906 return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000907 saturate, out, shift, undef );
908 }
909 else
910 return out;
911}
912
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000913
Brian Paul22db5352005-11-19 23:45:10 +0000914/**
915 * Generate instruction for getting a texture source term.
916 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000917static void load_texture( struct texenv_fragment_program *p, GLuint unit )
918{
919 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +0000920 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000921 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
922 struct ureg tmp = get_tex_temp( p );
923
Brian Paulbfb5ea32005-07-19 18:20:04 +0000924 if (dim == TEXTURE_UNKNOWN_INDEX)
925 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +0000926
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000927 /* TODO: Use D0_MASK_XY where possible.
928 */
Aapo Tahkolab8915342006-03-28 10:26:34 +0000929 if (p->state->unit[unit].enabled)
930 p->src_texture[unit] = emit_texld( p, OPCODE_TXP,
931 tmp, WRITEMASK_XYZW,
932 unit, dim, texcoord );
933 else
934 p->src_texture[unit] = get_zero(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000935 }
936}
937
Keith Whitwell241b6b72005-05-23 09:50:34 +0000938static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000939 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000940{
941 switch (src) {
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000942 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000943 load_texture(p, unit);
944 break;
945
Keith Whitwellce721142005-07-11 10:10:38 +0000946 case SRC_TEXTURE0:
947 case SRC_TEXTURE1:
948 case SRC_TEXTURE2:
949 case SRC_TEXTURE3:
950 case SRC_TEXTURE4:
951 case SRC_TEXTURE5:
952 case SRC_TEXTURE6:
953 case SRC_TEXTURE7:
Keith Whitwellce721142005-07-11 10:10:38 +0000954 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000955 break;
956
957 default:
958 break;
959 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000960
961 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000962}
963
Brian Paul22db5352005-11-19 23:45:10 +0000964
965/**
966 * Generate instructions for loading all texture source terms.
967 */
968static GLboolean
969load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000970{
Keith Whitwellce721142005-07-11 10:10:38 +0000971 struct state_key *key = p->state;
Aapo Tahkolab8915342006-03-28 10:26:34 +0000972 GLuint i;
973
974 for (i = 0; i < key->unit[unit].NumArgsRGB; i++) {
975 load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000976 }
Aapo Tahkolab8915342006-03-28 10:26:34 +0000977
978 for (i = 0; i < key->unit[unit].NumArgsA; i++) {
979 load_texenv_source( p, key->unit[unit].OptA[i].Source, unit );
980 }
981
Keith Whitwell241b6b72005-05-23 09:50:34 +0000982 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000983}
984
Brian Paul22db5352005-11-19 23:45:10 +0000985
986/**
987 * Generate a new fragment program which implements the context's
988 * current texture env/combine mode.
989 */
990static void
991create_new_program(struct state_key *key, GLcontext *ctx,
992 struct fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000993{
994 struct texenv_fragment_program p;
995 GLuint unit;
996 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +0000997
Keith Whitwelle4902422005-05-11 15:16:35 +0000998 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +0000999 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +00001000 p.state = key;
1001 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001002
Brian Paul5d7b49f2005-11-19 23:12:20 +00001003 p.program->Base.Instructions =
Brian Paul95801792005-12-06 15:41:43 +00001004 (struct prog_instruction*) _mesa_malloc(sizeof(struct prog_instruction) * MAX_INSTRUCTIONS);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001005 p.program->Base.NumInstructions = 0;
Keith Whitwell276330b2005-05-09 17:58:13 +00001006 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001007 p.program->NumTexIndirections = 1; /* correct? */
1008 p.program->NumTexInstructions = 0;
1009 p.program->NumAluInstructions = 0;
Keith Whitwell9ca88152005-05-10 09:56:02 +00001010 p.program->Base.String = 0;
1011 p.program->Base.NumInstructions =
Keith Whitwellce721142005-07-11 10:10:38 +00001012 p.program->Base.NumTemporaries =
1013 p.program->Base.NumParameters =
1014 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00001015 p.program->Base.Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +00001016
Brian Paulde997602005-11-12 17:53:14 +00001017 p.program->Base.InputsRead = 0;
1018 p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001019
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001020 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1021 p.src_texture[unit] = undef;
1022
Keith Whitwell47b29f52005-05-04 11:44:44 +00001023 p.src_previous = undef;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001024 p.half = undef;
1025 p.zero = undef;
1026 p.one = undef;
1027
Keith Whitwell15e75e02005-04-29 15:11:39 +00001028 p.last_tex_stage = 0;
Keith Whitwell93cd9232005-05-11 08:30:23 +00001029 release_temps(&p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001030
Keith Whitwellce721142005-07-11 10:10:38 +00001031 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001032 /* First pass - to support texture_env_crossbar, first identify
1033 * all referenced texture sources and emit texld instructions
1034 * for each:
1035 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001036 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001037 if (key->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +00001038 load_texunit_sources( &p, unit );
1039 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001040 }
1041
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001042 /* Second pass - emit combine instructions to build final color:
1043 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001044 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001045 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001046 p.src_previous = emit_texenv( &p, unit );
Keith Whitwell93cd9232005-05-11 08:30:23 +00001047 release_temps(&p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001048 }
1049 }
1050
Keith Whitwellce721142005-07-11 10:10:38 +00001051 cf = get_source( &p, SRC_PREVIOUS, 0 );
Brian Paul90ebb582005-11-02 18:06:12 +00001052 out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001053
Keith Whitwellce721142005-07-11 10:10:38 +00001054 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001055 /* Emit specular add.
1056 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001057 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Brian Paul7e807512005-11-05 17:10:45 +00001058 emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
1059 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001060 }
Brian Paulaa206952005-09-16 18:14:24 +00001061 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001062 /* Will wind up in here if no texture enabled or a couple of
1063 * other scenarios (GL_REPLACE for instance).
1064 */
Brian Paul7e807512005-11-05 17:10:45 +00001065 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001066 }
1067
Keith Whitwell47b29f52005-05-04 11:44:44 +00001068 /* Finish up:
1069 */
Brian Paul7e807512005-11-05 17:10:45 +00001070 emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001071
Keith Whitwellce721142005-07-11 10:10:38 +00001072 if (key->fog_enabled) {
1073 /* Pull fog mode from GLcontext, the value in the state key is
1074 * a reduced value and not what is expected in FogOption
1075 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001076 p.program->FogOption = ctx->Fog.Mode;
Keith Whitwellce721142005-07-11 10:10:38 +00001077 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001078 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001079
Brian Paul05051032005-11-01 04:36:33 +00001080 if (p.program->NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001081 program_error(&p, "Exceeded max nr indirect texture lookups");
1082
Brian Paul05051032005-11-01 04:36:33 +00001083 if (p.program->NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001084 program_error(&p, "Exceeded max TEX instructions");
1085
Brian Paul05051032005-11-01 04:36:33 +00001086 if (p.program->NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001087 program_error(&p, "Exceeded max ALU instructions");
1088
Brian Paul5d7b49f2005-11-19 23:12:20 +00001089 ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS);
Keith Whitwell8b88f622005-05-10 11:39:50 +00001090
Keith Whitwelldbeea252005-05-10 13:57:50 +00001091 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001092 */
Keith Whitwelle4902422005-05-11 15:16:35 +00001093 if (ctx->Driver.ProgramStringNotify || DISASSEM) {
Keith Whitwellce721142005-07-11 10:10:38 +00001094 if (ctx->Driver.ProgramStringNotify)
1095 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1096 &p.program->Base );
Keith Whitwelldbeea252005-05-10 13:57:50 +00001097
Keith Whitwellce721142005-07-11 10:10:38 +00001098 if (DISASSEM) {
Brian Paulde997602005-11-12 17:53:14 +00001099 _mesa_print_program(&p.program->Base);
Keith Whitwellce721142005-07-11 10:10:38 +00001100 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001101 }
Keith Whitwelle4902422005-05-11 15:16:35 +00001102 }
Keith Whitwell15e75e02005-04-29 15:11:39 +00001103}
1104
Brian Paul5d7b49f2005-11-19 23:12:20 +00001105
Brian Pauld9736db2006-05-23 02:44:46 +00001106static struct fragment_program *
1107search_cache(const struct texenvprog_cache *cache,
1108 GLuint hash,
1109 const const void *key,
1110 GLuint keysize)
Keith Whitwellce721142005-07-11 10:10:38 +00001111{
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001112 struct texenvprog_cache_item *c;
Keith Whitwellce721142005-07-11 10:10:38 +00001113
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001114 for (c = cache->items[hash % cache->size]; c; c = c->next) {
1115 if (c->hash == hash && memcmp(c->key, key, keysize) == 0)
Brian Pauld9736db2006-05-23 02:44:46 +00001116 return (struct fragment_program *) c->data;
Keith Whitwellce721142005-07-11 10:10:38 +00001117 }
1118
1119 return NULL;
1120}
1121
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001122static void rehash( struct texenvprog_cache *cache )
1123{
1124 struct texenvprog_cache_item **items;
1125 struct texenvprog_cache_item *c, *next;
1126 GLuint size, i;
1127
1128 size = cache->size * 3;
1129 items = (struct texenvprog_cache_item**) _mesa_malloc(size * sizeof(*items));
1130 _mesa_memset(items, 0, size * sizeof(*items));
1131
1132 for (i = 0; i < cache->size; i++)
1133 for (c = cache->items[i]; c; c = next) {
1134 next = c->next;
1135 c->next = items[c->hash % size];
1136 items[c->hash % size] = c;
1137 }
1138
1139 _mesa_free(cache->items);
1140 cache->items = items;
1141 cache->size = size;
1142}
1143
Keith Whitwell8065c122006-05-22 16:09:27 +00001144static void clear_cache( struct texenvprog_cache *cache )
1145{
1146 struct texenvprog_cache_item *c, *next;
1147 GLuint i;
1148
1149 for (i = 0; i < cache->size; i++) {
1150 for (c = cache->items[i]; c; c = next) {
1151 next = c->next;
1152 _mesa_free(c->key);
1153 cache->ctx->Driver.DeleteProgram(cache->ctx, (struct program *)c->data);
1154 _mesa_free(c);
1155 }
1156 cache->items[i] = NULL;
1157 }
1158
1159
1160 cache->n_items = 0;
1161}
1162
1163
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001164static void cache_item( struct texenvprog_cache *cache,
Keith Whitwellce721142005-07-11 10:10:38 +00001165 GLuint hash,
Brian Paulb8f2f6f2006-05-23 01:55:31 +00001166 const struct state_key *key,
Keith Whitwellce721142005-07-11 10:10:38 +00001167 void *data )
1168{
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001169 struct texenvprog_cache_item *c = MALLOC(sizeof(*c));
Keith Whitwellce721142005-07-11 10:10:38 +00001170 c->hash = hash;
Keith Whitwell8065c122006-05-22 16:09:27 +00001171
1172 c->key = _mesa_malloc(sizeof(*key));
1173 memcpy(c->key, key, sizeof(*key));
1174
Keith Whitwellce721142005-07-11 10:10:38 +00001175 c->data = data;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001176
Keith Whitwell8065c122006-05-22 16:09:27 +00001177 if (cache->n_items > cache->size * 1.5) {
1178 if (cache->size < 1000)
1179 rehash(cache);
1180 else
1181 clear_cache(cache);
1182 }
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001183
Keith Whitwell8065c122006-05-22 16:09:27 +00001184 cache->n_items++;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001185 c->next = cache->items[hash % cache->size];
1186 cache->items[hash % cache->size] = c;
Keith Whitwellce721142005-07-11 10:10:38 +00001187}
1188
Brian Pauld9736db2006-05-23 02:44:46 +00001189static GLuint hash_key( const struct state_key *key )
Keith Whitwellce721142005-07-11 10:10:38 +00001190{
1191 GLuint *ikey = (GLuint *)key;
1192 GLuint hash = 0, i;
1193
Keith Whitwell8065c122006-05-22 16:09:27 +00001194 /* Make a slightly better attempt at a hash function:
Keith Whitwellce721142005-07-11 10:10:38 +00001195 */
Keith Whitwell8065c122006-05-22 16:09:27 +00001196 for (i = 0; i < sizeof(*key)/sizeof(*ikey); i++)
1197 {
1198 hash += ikey[i];
1199 hash += (hash << 10);
1200 hash ^= (hash >> 6);
1201 }
Keith Whitwellce721142005-07-11 10:10:38 +00001202
1203 return hash;
1204}
1205
1206void _mesa_UpdateTexEnvProgram( GLcontext *ctx )
1207{
Keith Whitwell8065c122006-05-22 16:09:27 +00001208 struct state_key key;
Keith Whitwellce721142005-07-11 10:10:38 +00001209 GLuint hash;
Brian Pauld9736db2006-05-23 02:44:46 +00001210 const struct fragment_program *prev = ctx->FragmentProgram._Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001211
Keith Whitwellc3626a92005-11-01 17:25:49 +00001212 if (!ctx->FragmentProgram._Enabled) {
Keith Whitwell8065c122006-05-22 16:09:27 +00001213 make_state_key(ctx, &key);
1214 hash = hash_key(&key);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001215
Brian Pauld9736db2006-05-23 02:44:46 +00001216 ctx->FragmentProgram._Current =
1217 ctx->_TexEnvProgram =
Keith Whitwell8065c122006-05-22 16:09:27 +00001218 search_cache(&ctx->Texture.env_fp_cache, hash, &key, sizeof(key));
Keith Whitwellce721142005-07-11 10:10:38 +00001219
Keith Whitwellc3626a92005-11-01 17:25:49 +00001220 if (!ctx->_TexEnvProgram) {
Aapo Tahkola40ca5b42005-11-18 17:57:27 +00001221 if (0) _mesa_printf("Building new texenv proggy for key %x\n", hash);
Keith Whitwellce721142005-07-11 10:10:38 +00001222
Keith Whitwellc3626a92005-11-01 17:25:49 +00001223 ctx->FragmentProgram._Current = ctx->_TexEnvProgram =
1224 (struct fragment_program *)
1225 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Keith Whitwellce721142005-07-11 10:10:38 +00001226
Keith Whitwell8065c122006-05-22 16:09:27 +00001227 create_new_program(&key, ctx, ctx->_TexEnvProgram);
Keith Whitwellce721142005-07-11 10:10:38 +00001228
Keith Whitwell8065c122006-05-22 16:09:27 +00001229 cache_item(&ctx->Texture.env_fp_cache, hash, &key, ctx->_TexEnvProgram);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001230 } else {
Aapo Tahkola40ca5b42005-11-18 17:57:27 +00001231 if (0) _mesa_printf("Found existing texenv program for key %x\n", hash);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001232 }
1233 }
1234 else {
1235 ctx->FragmentProgram._Current = ctx->FragmentProgram.Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001236 }
Keith Whitwellc3626a92005-11-01 17:25:49 +00001237
1238 /* Tell the driver about the change. Could define a new target for
1239 * this?
1240 */
Brian Paul5d7b49f2005-11-19 23:12:20 +00001241 if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) {
1242 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
1243 (struct program *) ctx->FragmentProgram._Current);
1244 }
Keith Whitwellce721142005-07-11 10:10:38 +00001245}
1246
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001247
1248void _mesa_TexEnvProgramCacheInit( GLcontext *ctx )
1249{
Keith Whitwell8065c122006-05-22 16:09:27 +00001250 ctx->Texture.env_fp_cache.ctx = ctx;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001251 ctx->Texture.env_fp_cache.size = 17;
1252 ctx->Texture.env_fp_cache.n_items = 0;
1253 ctx->Texture.env_fp_cache.items = (struct texenvprog_cache_item **)
1254 _mesa_calloc(ctx->Texture.env_fp_cache.size *
1255 sizeof(struct texenvprog_cache_item));
1256}
1257
1258
Keith Whitwellce721142005-07-11 10:10:38 +00001259void _mesa_TexEnvProgramCacheDestroy( GLcontext *ctx )
1260{
Keith Whitwell8065c122006-05-22 16:09:27 +00001261 clear_cache(&ctx->Texture.env_fp_cache);
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001262 _mesa_free(ctx->Texture.env_fp_cache.items);
Keith Whitwellce721142005-07-11 10:10:38 +00001263}