Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1 | /************************************************************************** |
| 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 Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 28 | #include "glheader.h" |
| 29 | #include "macros.h" |
| 30 | #include "enums.h" |
| 31 | #include "texenvprogram.h" |
| 32 | |
| 33 | #include "shader/program.h" |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 34 | #include "shader/program_instruction.h" |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 35 | |
| 36 | |
Keith Whitwell | 269e389 | 2005-05-12 10:28:43 +0000 | [diff] [blame] | 37 | #define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 38 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 39 | struct mode_opt { |
| 40 | unsigned Source:4; |
| 41 | unsigned Operand:3; |
| 42 | }; |
| 43 | |
| 44 | struct state_key { |
| 45 | GLuint enabled_units; |
| 46 | unsigned separate_specular:1; |
| 47 | unsigned fog_enabled:1; |
| 48 | unsigned fog_mode:2; |
| 49 | |
| 50 | struct { |
| 51 | unsigned enabled:1; |
| 52 | unsigned source_index:3; |
| 53 | unsigned ScaleShiftRGB:2; |
| 54 | unsigned ScaleShiftA:2; |
| 55 | |
| 56 | unsigned NumArgsRGB:2; |
| 57 | unsigned ModeRGB:4; |
| 58 | struct mode_opt OptRGB[3]; |
| 59 | |
| 60 | unsigned NumArgsA:2; |
| 61 | unsigned ModeA:4; |
| 62 | struct mode_opt OptA[3]; |
| 63 | } unit[8]; |
| 64 | }; |
| 65 | |
| 66 | #define FOG_LINEAR 0 |
| 67 | #define FOG_EXP 1 |
| 68 | #define FOG_EXP2 2 |
| 69 | #define FOG_UNKNOWN 3 |
| 70 | |
| 71 | static GLuint translate_fog_mode( GLenum mode ) |
| 72 | { |
| 73 | switch (mode) { |
| 74 | case GL_LINEAR: return FOG_LINEAR; |
| 75 | case GL_EXP: return FOG_EXP; |
| 76 | case GL_EXP2: return FOG_EXP2; |
| 77 | default: return FOG_UNKNOWN; |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | #define OPR_SRC_COLOR 0 |
| 82 | #define OPR_ONE_MINUS_SRC_COLOR 1 |
| 83 | #define OPR_SRC_ALPHA 2 |
| 84 | #define OPR_ONE_MINUS_SRC_ALPHA 3 |
| 85 | #define OPR_ZERO 4 |
| 86 | #define OPR_ONE 5 |
| 87 | #define OPR_UNKNOWN 7 |
| 88 | |
| 89 | static GLuint translate_operand( GLenum operand ) |
| 90 | { |
| 91 | switch (operand) { |
| 92 | case GL_SRC_COLOR: return OPR_SRC_COLOR; |
| 93 | case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR; |
| 94 | case GL_SRC_ALPHA: return OPR_SRC_ALPHA; |
| 95 | case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA; |
| 96 | case GL_ZERO: return OPR_ZERO; |
| 97 | case GL_ONE: return OPR_ONE; |
| 98 | default: return OPR_UNKNOWN; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | #define SRC_TEXTURE 0 |
| 103 | #define SRC_TEXTURE0 1 |
| 104 | #define SRC_TEXTURE1 2 |
| 105 | #define SRC_TEXTURE2 3 |
| 106 | #define SRC_TEXTURE3 4 |
| 107 | #define SRC_TEXTURE4 5 |
| 108 | #define SRC_TEXTURE5 6 |
| 109 | #define SRC_TEXTURE6 7 |
| 110 | #define SRC_TEXTURE7 8 |
| 111 | #define SRC_CONSTANT 9 |
| 112 | #define SRC_PRIMARY_COLOR 10 |
| 113 | #define SRC_PREVIOUS 11 |
| 114 | #define SRC_UNKNOWN 15 |
| 115 | |
| 116 | static GLuint translate_source( GLenum src ) |
| 117 | { |
| 118 | switch (src) { |
| 119 | case GL_TEXTURE: return SRC_TEXTURE; |
| 120 | case GL_TEXTURE0: |
| 121 | case GL_TEXTURE1: |
| 122 | case GL_TEXTURE2: |
| 123 | case GL_TEXTURE3: |
| 124 | case GL_TEXTURE4: |
| 125 | case GL_TEXTURE5: |
| 126 | case GL_TEXTURE6: |
| 127 | case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0); |
| 128 | case GL_CONSTANT: return SRC_CONSTANT; |
| 129 | case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR; |
| 130 | case GL_PREVIOUS: return SRC_PREVIOUS; |
| 131 | default: return SRC_UNKNOWN; |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | #define MODE_REPLACE 0 |
| 136 | #define MODE_MODULATE 1 |
| 137 | #define MODE_ADD 2 |
| 138 | #define MODE_ADD_SIGNED 3 |
| 139 | #define MODE_INTERPOLATE 4 |
| 140 | #define MODE_SUBTRACT 5 |
| 141 | #define MODE_DOT3_RGB 6 |
| 142 | #define MODE_DOT3_RGB_EXT 7 |
| 143 | #define MODE_DOT3_RGBA 8 |
| 144 | #define MODE_DOT3_RGBA_EXT 9 |
| 145 | #define MODE_MODULATE_ADD_ATI 10 |
| 146 | #define MODE_MODULATE_SIGNED_ADD_ATI 11 |
| 147 | #define MODE_MODULATE_SUBTRACT_ATI 12 |
| 148 | #define MODE_UNKNOWN 15 |
| 149 | |
| 150 | static GLuint translate_mode( GLenum mode ) |
| 151 | { |
| 152 | switch (mode) { |
| 153 | case GL_REPLACE: return MODE_REPLACE; |
| 154 | case GL_MODULATE: return MODE_MODULATE; |
| 155 | case GL_ADD: return MODE_ADD; |
| 156 | case GL_ADD_SIGNED: return MODE_ADD_SIGNED; |
| 157 | case GL_INTERPOLATE: return MODE_INTERPOLATE; |
| 158 | case GL_SUBTRACT: return MODE_SUBTRACT; |
| 159 | case GL_DOT3_RGB: return MODE_DOT3_RGB; |
| 160 | case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT; |
| 161 | case GL_DOT3_RGBA: return MODE_DOT3_RGBA; |
| 162 | case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT; |
| 163 | case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI; |
| 164 | case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI; |
| 165 | case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI; |
| 166 | default: return MODE_UNKNOWN; |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | #define TEXTURE_UNKNOWN_INDEX 7 |
Brian Paul | e00ac11 | 2005-09-15 05:00:45 +0000 | [diff] [blame] | 171 | static GLuint translate_tex_src_bit( GLbitfield bit ) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 172 | { |
| 173 | switch (bit) { |
| 174 | case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX; |
| 175 | case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX; |
| 176 | case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX; |
| 177 | case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX; |
| 178 | case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX; |
| 179 | default: return TEXTURE_UNKNOWN_INDEX; |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | static struct state_key *make_state_key( GLcontext *ctx ) |
| 184 | { |
| 185 | struct state_key *key = CALLOC_STRUCT(state_key); |
| 186 | GLuint i, j; |
| 187 | |
| 188 | for (i=0;i<MAX_TEXTURE_UNITS;i++) { |
| 189 | struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i]; |
| 190 | |
| 191 | if (!texUnit->_ReallyEnabled) |
| 192 | continue; |
| 193 | |
| 194 | key->unit[i].enabled = 1; |
| 195 | key->enabled_units |= (1<<i); |
| 196 | |
| 197 | key->unit[i].source_index = |
| 198 | translate_tex_src_bit(texUnit->_ReallyEnabled); |
| 199 | |
| 200 | key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB; |
| 201 | key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA; |
| 202 | |
| 203 | key->unit[i].ModeRGB = |
| 204 | translate_mode(texUnit->_CurrentCombine->ModeRGB); |
| 205 | key->unit[i].ModeA = |
| 206 | translate_mode(texUnit->_CurrentCombine->ModeA); |
| 207 | |
| 208 | key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB; |
| 209 | key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftRGB; |
| 210 | |
| 211 | for (j=0;j<3;j++) { |
| 212 | key->unit[i].OptRGB[j].Operand = |
| 213 | translate_operand(texUnit->_CurrentCombine->OperandRGB[j]); |
| 214 | key->unit[i].OptA[j].Operand = |
| 215 | translate_operand(texUnit->_CurrentCombine->OperandA[j]); |
| 216 | key->unit[i].OptRGB[j].Source = |
| 217 | translate_source(texUnit->_CurrentCombine->SourceRGB[j]); |
| 218 | key->unit[i].OptA[j].Source = |
| 219 | translate_source(texUnit->_CurrentCombine->SourceA[j]); |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR) |
| 224 | key->separate_specular = 1; |
| 225 | |
| 226 | if (ctx->Fog.Enabled) { |
| 227 | key->fog_enabled = 1; |
| 228 | key->fog_mode = translate_fog_mode(ctx->Fog.Mode); |
| 229 | } |
| 230 | |
| 231 | return key; |
| 232 | } |
| 233 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 234 | /* Use uregs to represent registers internally, translate to Mesa's |
| 235 | * expected formats on emit. |
| 236 | * |
| 237 | * NOTE: These are passed by value extensively in this file rather |
| 238 | * than as usual by pointer reference. If this disturbs you, try |
| 239 | * remembering they are just 32bits in size. |
| 240 | * |
| 241 | * GCC is smart enough to deal with these dword-sized structures in |
| 242 | * much the same way as if I had defined them as dwords and was using |
| 243 | * macros to access and set the fields. This is much nicer and easier |
| 244 | * to evolve. |
| 245 | */ |
| 246 | struct ureg { |
| 247 | GLuint file:4; |
| 248 | GLuint idx:8; |
| 249 | GLuint negatebase:1; |
| 250 | GLuint abs:1; |
| 251 | GLuint negateabs:1; |
| 252 | GLuint swz:12; |
| 253 | GLuint pad:5; |
| 254 | }; |
| 255 | |
| 256 | const static struct ureg undef = { |
| 257 | ~0, |
| 258 | ~0, |
| 259 | 0, |
| 260 | 0, |
| 261 | 0, |
| 262 | 0, |
| 263 | 0 |
| 264 | }; |
| 265 | |
| 266 | #define X 0 |
| 267 | #define Y 1 |
| 268 | #define Z 2 |
| 269 | #define W 3 |
| 270 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 271 | /* State used to build the fragment program: |
| 272 | */ |
| 273 | struct texenv_fragment_program { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 274 | struct fragment_program *program; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 275 | GLcontext *ctx; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 276 | struct state_key *state; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 277 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 278 | GLuint alu_temps; /* Track texture indirections, see spec. */ |
| 279 | GLuint temps_output; /* Track texture indirections, see spec. */ |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 280 | |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 281 | GLuint temp_in_use; /* Tracks temporary regs which are in |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 282 | * use. |
| 283 | */ |
| 284 | |
| 285 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 286 | GLboolean error; |
| 287 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 288 | struct ureg src_texture[MAX_TEXTURE_UNITS]; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 289 | /* Reg containing each texture unit's sampled texture color, |
| 290 | * else undef. |
| 291 | */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 292 | |
| 293 | struct ureg src_previous; /* Reg containing color from previous |
| 294 | * stage. May need to be decl'd. |
| 295 | */ |
| 296 | |
| 297 | GLuint last_tex_stage; /* Number of last enabled texture unit */ |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 298 | |
| 299 | struct ureg half; |
| 300 | struct ureg one; |
| 301 | struct ureg zero; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 302 | }; |
| 303 | |
| 304 | |
| 305 | |
| 306 | static struct ureg make_ureg(GLuint file, GLuint idx) |
| 307 | { |
| 308 | struct ureg reg; |
| 309 | reg.file = file; |
| 310 | reg.idx = idx; |
| 311 | reg.negatebase = 0; |
| 312 | reg.abs = 0; |
| 313 | reg.negateabs = 0; |
| 314 | reg.swz = SWIZZLE_NOOP; |
| 315 | reg.pad = 0; |
| 316 | return reg; |
| 317 | } |
| 318 | |
| 319 | static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w ) |
| 320 | { |
| 321 | reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x), |
| 322 | GET_SWZ(reg.swz, y), |
| 323 | GET_SWZ(reg.swz, z), |
| 324 | GET_SWZ(reg.swz, w)); |
| 325 | |
| 326 | return reg; |
| 327 | } |
| 328 | |
| 329 | static struct ureg swizzle1( struct ureg reg, int x ) |
| 330 | { |
| 331 | return swizzle(reg, x, x, x, x); |
| 332 | } |
| 333 | |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 334 | static struct ureg negate( struct ureg reg ) |
| 335 | { |
| 336 | reg.negatebase ^= 1; |
| 337 | return reg; |
| 338 | } |
| 339 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 340 | static GLboolean is_undef( struct ureg reg ) |
| 341 | { |
| 342 | return reg.file == 0xf; |
| 343 | } |
| 344 | |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 345 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 346 | static struct ureg get_temp( struct texenv_fragment_program *p ) |
| 347 | { |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 348 | int bit; |
| 349 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 350 | /* First try and reuse temps which have been used already: |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 351 | */ |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 352 | bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps ); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 353 | |
| 354 | /* Then any unused temporary: |
| 355 | */ |
| 356 | if (!bit) |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 357 | bit = _mesa_ffs( ~p->temp_in_use ); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 358 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 359 | if (!bit) { |
Brian Paul | bfb5ea3 | 2005-07-19 18:20:04 +0000 | [diff] [blame] | 360 | _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__); |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 361 | _mesa_exit(1); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 362 | } |
| 363 | |
Keith Whitwell | b5cbaf9 | 2005-09-08 18:45:03 +0000 | [diff] [blame] | 364 | if (bit > p->program->Base.NumTemporaries) |
| 365 | p->program->Base.NumTemporaries = bit; |
| 366 | |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 367 | p->temp_in_use |= 1<<(bit-1); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 368 | return make_ureg(PROGRAM_TEMPORARY, (bit-1)); |
| 369 | } |
| 370 | |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 371 | static struct ureg get_tex_temp( struct texenv_fragment_program *p ) |
| 372 | { |
| 373 | int bit; |
| 374 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 375 | /* First try to find availble temp not previously used (to avoid |
| 376 | * starting a new texture indirection). According to the spec, the |
| 377 | * ~p->temps_output isn't necessary, but will keep it there for |
| 378 | * now: |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 379 | */ |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 380 | bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output ); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 381 | |
| 382 | /* Then any unused temporary: |
| 383 | */ |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 384 | if (!bit) |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 385 | bit = _mesa_ffs( ~p->temp_in_use ); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 386 | |
| 387 | if (!bit) { |
Brian Paul | bfb5ea3 | 2005-07-19 18:20:04 +0000 | [diff] [blame] | 388 | _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__); |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 389 | _mesa_exit(1); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Keith Whitwell | b5cbaf9 | 2005-09-08 18:45:03 +0000 | [diff] [blame] | 392 | if (bit > p->program->Base.NumTemporaries) |
| 393 | p->program->Base.NumTemporaries = bit; |
| 394 | |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 395 | p->temp_in_use |= 1<<(bit-1); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 396 | return make_ureg(PROGRAM_TEMPORARY, (bit-1)); |
| 397 | } |
| 398 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 399 | |
| 400 | static void release_temps( struct texenv_fragment_program *p ) |
| 401 | { |
Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 402 | GLuint max_temp = p->ctx->Const.FragmentProgram.MaxTemps; |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 403 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 404 | /* KW: To support tex_env_crossbar, don't release the registers in |
| 405 | * temps_output. |
| 406 | */ |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 407 | if (max_temp >= sizeof(int) * 8) |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 408 | p->temp_in_use = p->temps_output; |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 409 | else |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 410 | p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 414 | static struct ureg register_param6( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 415 | GLint s0, |
| 416 | GLint s1, |
| 417 | GLint s2, |
| 418 | GLint s3, |
| 419 | GLint s4, |
| 420 | GLint s5) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 421 | { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 422 | GLint tokens[6]; |
| 423 | GLuint idx; |
| 424 | tokens[0] = s0; |
| 425 | tokens[1] = s1; |
| 426 | tokens[2] = s2; |
| 427 | tokens[3] = s3; |
| 428 | tokens[4] = s4; |
| 429 | tokens[5] = s5; |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 430 | idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens ); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 431 | return make_ureg(PROGRAM_STATE_VAR, idx); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 434 | |
| 435 | #define register_param1(p,s0) register_param6(p,s0,0,0,0,0,0) |
| 436 | #define register_param2(p,s0,s1) register_param6(p,s0,s1,0,0,0,0) |
| 437 | #define register_param3(p,s0,s1,s2) register_param6(p,s0,s1,s2,0,0,0) |
| 438 | #define register_param4(p,s0,s1,s2,s3) register_param6(p,s0,s1,s2,s3,0,0) |
| 439 | |
| 440 | |
| 441 | static struct ureg register_input( struct texenv_fragment_program *p, GLuint input ) |
| 442 | { |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 443 | p->program->Base.InputsRead |= (1 << input); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 444 | return make_ureg(PROGRAM_INPUT, input); |
| 445 | } |
| 446 | |
| 447 | |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 448 | static void emit_arg( struct prog_src_register *reg, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 449 | struct ureg ureg ) |
| 450 | { |
| 451 | reg->File = ureg.file; |
| 452 | reg->Index = ureg.idx; |
| 453 | reg->Swizzle = ureg.swz; |
Keith Whitwell | f2802c4 | 2005-10-07 09:55:26 +0000 | [diff] [blame] | 454 | reg->NegateBase = ureg.negatebase ? 0xf : 0x0; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 455 | reg->Abs = ureg.abs; |
| 456 | reg->NegateAbs = ureg.negateabs; |
| 457 | } |
| 458 | |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 459 | static void emit_dst( struct prog_dst_register *dst, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 460 | struct ureg ureg, GLuint mask ) |
| 461 | { |
| 462 | dst->File = ureg.file; |
| 463 | dst->Index = ureg.idx; |
| 464 | dst->WriteMask = mask; |
| 465 | dst->CondMask = 0; |
| 466 | dst->CondSwizzle = 0; |
| 467 | } |
| 468 | |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 469 | static struct prog_instruction * |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 470 | emit_op(struct texenv_fragment_program *p, |
| 471 | GLuint op, |
| 472 | struct ureg dest, |
| 473 | GLuint mask, |
| 474 | GLuint saturate, |
| 475 | struct ureg src0, |
| 476 | struct ureg src1, |
| 477 | struct ureg src2 ) |
| 478 | { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 479 | GLuint nr = p->program->Base.NumInstructions++; |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 480 | struct prog_instruction *inst = &p->program->Base.Instructions[nr]; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 481 | |
Brian Paul | aa20695 | 2005-09-16 18:14:24 +0000 | [diff] [blame] | 482 | _mesa_memset(inst, 0, sizeof(*inst)); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 483 | inst->Opcode = op; |
| 484 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 485 | emit_arg( &inst->SrcReg[0], src0 ); |
| 486 | emit_arg( &inst->SrcReg[1], src1 ); |
| 487 | emit_arg( &inst->SrcReg[2], src2 ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 488 | |
| 489 | inst->Saturate = saturate; |
| 490 | |
| 491 | emit_dst( &inst->DstReg, dest, mask ); |
| 492 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 493 | /* Accounting for indirection tracking: |
| 494 | */ |
| 495 | if (dest.file == PROGRAM_TEMPORARY) |
| 496 | p->temps_output |= 1 << dest.idx; |
| 497 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 498 | return inst; |
| 499 | } |
| 500 | |
| 501 | |
| 502 | static struct ureg emit_arith( struct texenv_fragment_program *p, |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 503 | GLuint op, |
| 504 | struct ureg dest, |
| 505 | GLuint mask, |
| 506 | GLuint saturate, |
| 507 | struct ureg src0, |
| 508 | struct ureg src1, |
| 509 | struct ureg src2 ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 510 | { |
| 511 | emit_op(p, op, dest, mask, saturate, src0, src1, src2); |
| 512 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 513 | /* Accounting for indirection tracking: |
| 514 | */ |
| 515 | if (src0.file == PROGRAM_TEMPORARY) |
| 516 | p->alu_temps |= 1 << src0.idx; |
| 517 | |
| 518 | if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY) |
| 519 | p->alu_temps |= 1 << src1.idx; |
| 520 | |
| 521 | if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY) |
| 522 | p->alu_temps |= 1 << src2.idx; |
| 523 | |
| 524 | if (dest.file == PROGRAM_TEMPORARY) |
| 525 | p->alu_temps |= 1 << dest.idx; |
| 526 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 527 | p->program->NumAluInstructions++; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 528 | return dest; |
| 529 | } |
| 530 | |
| 531 | static struct ureg emit_texld( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 532 | GLuint op, |
| 533 | struct ureg dest, |
| 534 | GLuint destmask, |
| 535 | GLuint tex_unit, |
| 536 | GLuint tex_idx, |
| 537 | struct ureg coord ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 538 | { |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 539 | struct prog_instruction *inst = emit_op( p, op, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 540 | dest, destmask, |
| 541 | 0, /* don't saturate? */ |
| 542 | coord, /* arg 0? */ |
| 543 | undef, |
| 544 | undef); |
| 545 | |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 546 | inst->TexSrcTarget = tex_idx; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 547 | inst->TexSrcUnit = tex_unit; |
| 548 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 549 | p->program->NumTexInstructions++; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 550 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 551 | /* Is this a texture indirection? |
| 552 | */ |
| 553 | if ((coord.file == PROGRAM_TEMPORARY && |
| 554 | (p->temps_output & (1<<coord.idx))) || |
| 555 | (dest.file == PROGRAM_TEMPORARY && |
| 556 | (p->alu_temps & (1<<dest.idx)))) { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 557 | p->program->NumTexIndirections++; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 558 | p->temps_output = 1<<coord.idx; |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 559 | p->alu_temps = 0; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 560 | assert(0); /* KW: texture env crossbar */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | return dest; |
| 564 | } |
| 565 | |
| 566 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 567 | static struct ureg register_const4f( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 568 | GLfloat s0, |
| 569 | GLfloat s1, |
| 570 | GLfloat s2, |
| 571 | GLfloat s3) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 572 | { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 573 | GLfloat values[4]; |
| 574 | GLuint idx; |
| 575 | values[0] = s0; |
| 576 | values[1] = s1; |
| 577 | values[2] = s2; |
| 578 | values[3] = s3; |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 579 | idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values ); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 580 | return make_ureg(PROGRAM_STATE_VAR, idx); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 583 | #define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0) |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 584 | #define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1) |
| 585 | #define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1) |
| 586 | #define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 587 | |
| 588 | |
| 589 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 590 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 591 | static struct ureg get_one( struct texenv_fragment_program *p ) |
| 592 | { |
| 593 | if (is_undef(p->one)) |
| 594 | p->one = register_scalar_const(p, 1.0); |
| 595 | return p->one; |
| 596 | } |
| 597 | |
| 598 | static struct ureg get_half( struct texenv_fragment_program *p ) |
| 599 | { |
| 600 | if (is_undef(p->half)) |
| 601 | p->one = register_scalar_const(p, 0.5); |
| 602 | return p->half; |
| 603 | } |
| 604 | |
| 605 | static struct ureg get_zero( struct texenv_fragment_program *p ) |
| 606 | { |
| 607 | if (is_undef(p->zero)) |
| 608 | p->one = register_scalar_const(p, 0.0); |
| 609 | return p->zero; |
| 610 | } |
| 611 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 612 | |
| 613 | |
| 614 | |
| 615 | |
| 616 | static void program_error( struct texenv_fragment_program *p, const char *msg ) |
| 617 | { |
Brian Paul | bfb5ea3 | 2005-07-19 18:20:04 +0000 | [diff] [blame] | 618 | _mesa_problem(NULL, msg); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 619 | p->error = 1; |
| 620 | } |
| 621 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 622 | static struct ureg get_source( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 623 | GLuint src, GLuint unit ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 624 | { |
| 625 | switch (src) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 626 | case SRC_TEXTURE: |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 627 | assert(!is_undef(p->src_texture[unit])); |
| 628 | return p->src_texture[unit]; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 629 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 630 | case SRC_TEXTURE0: |
| 631 | case SRC_TEXTURE1: |
| 632 | case SRC_TEXTURE2: |
| 633 | case SRC_TEXTURE3: |
| 634 | case SRC_TEXTURE4: |
| 635 | case SRC_TEXTURE5: |
| 636 | case SRC_TEXTURE6: |
| 637 | case SRC_TEXTURE7: |
| 638 | assert(!is_undef(p->src_texture[src - SRC_TEXTURE0])); |
| 639 | return p->src_texture[src - SRC_TEXTURE0]; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 640 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 641 | case SRC_CONSTANT: |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 642 | return register_param2(p, STATE_TEXENV_COLOR, unit); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 643 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 644 | case SRC_PRIMARY_COLOR: |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 645 | return register_input(p, FRAG_ATTRIB_COL0); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 646 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 647 | case SRC_PREVIOUS: |
| 648 | default: |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 649 | if (is_undef(p->src_previous)) |
| 650 | return register_input(p, FRAG_ATTRIB_COL0); |
| 651 | else |
| 652 | return p->src_previous; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 653 | } |
| 654 | } |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 655 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 656 | static struct ureg emit_combine_source( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 657 | GLuint mask, |
| 658 | GLuint unit, |
| 659 | GLuint source, |
| 660 | GLuint operand ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 661 | { |
| 662 | struct ureg arg, src, one; |
| 663 | |
| 664 | src = get_source(p, source, unit); |
| 665 | |
| 666 | switch (operand) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 667 | case OPR_ONE_MINUS_SRC_COLOR: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 668 | /* Get unused tmp, |
| 669 | * Emit tmp = 1.0 - arg.xyzw |
| 670 | */ |
| 671 | arg = get_temp( p ); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 672 | one = get_one( p ); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 673 | return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 674 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 675 | case OPR_SRC_ALPHA: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 676 | if (mask == WRITEMASK_W) |
| 677 | return src; |
| 678 | else |
| 679 | return swizzle1( src, W ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 680 | case OPR_ONE_MINUS_SRC_ALPHA: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 681 | /* Get unused tmp, |
| 682 | * Emit tmp = 1.0 - arg.wwww |
| 683 | */ |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 684 | arg = get_temp(p); |
| 685 | one = get_one(p); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 686 | return emit_arith(p, OPCODE_SUB, arg, mask, 0, |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 687 | one, swizzle1(src, W), undef); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 688 | case OPR_ZERO: |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 689 | return get_zero(p); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 690 | case OPR_ONE: |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 691 | return get_one(p); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 692 | case OPR_SRC_COLOR: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 693 | default: |
| 694 | return src; |
| 695 | } |
| 696 | } |
| 697 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 698 | static GLboolean args_match( struct state_key *key, GLuint unit ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 699 | { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 700 | int i, nr = key->unit[unit].NumArgsRGB; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 701 | |
| 702 | for (i = 0 ; i < nr ; i++) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 703 | if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 704 | return GL_FALSE; |
| 705 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 706 | switch(key->unit[unit].OptA[i].Operand) { |
| 707 | case OPR_SRC_ALPHA: |
| 708 | switch(key->unit[unit].OptRGB[i].Operand) { |
| 709 | case OPR_SRC_COLOR: |
| 710 | case OPR_SRC_ALPHA: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 711 | break; |
| 712 | default: |
| 713 | return GL_FALSE; |
| 714 | } |
| 715 | break; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 716 | case OPR_ONE_MINUS_SRC_ALPHA: |
| 717 | switch(key->unit[unit].OptRGB[i].Operand) { |
| 718 | case OPR_ONE_MINUS_SRC_COLOR: |
| 719 | case OPR_ONE_MINUS_SRC_ALPHA: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 720 | break; |
| 721 | default: |
| 722 | return GL_FALSE; |
| 723 | } |
| 724 | break; |
| 725 | default: |
| 726 | return GL_FALSE; /* impossible */ |
| 727 | } |
| 728 | } |
| 729 | |
| 730 | return GL_TRUE; |
| 731 | } |
| 732 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 733 | static struct ureg emit_combine( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 734 | struct ureg dest, |
| 735 | GLuint mask, |
| 736 | GLuint saturate, |
| 737 | GLuint unit, |
| 738 | GLuint nr, |
| 739 | GLuint mode, |
| 740 | struct mode_opt *opt) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 741 | { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 742 | struct ureg src[3]; |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 743 | struct ureg tmp, half; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 744 | int i; |
| 745 | |
| 746 | for (i = 0; i < nr; i++) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 747 | src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 748 | |
| 749 | switch (mode) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 750 | case MODE_REPLACE: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 751 | if (mask == WRITEMASK_XYZW && !saturate) |
| 752 | return src[0]; |
| 753 | else |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 754 | return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 755 | case MODE_MODULATE: |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 756 | return emit_arith( p, OPCODE_MUL, dest, mask, saturate, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 757 | src[0], src[1], undef ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 758 | case MODE_ADD: |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 759 | return emit_arith( p, OPCODE_ADD, dest, mask, saturate, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 760 | src[0], src[1], undef ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 761 | case MODE_ADD_SIGNED: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 762 | /* tmp = arg0 + arg1 |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 763 | * result = tmp - .5 |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 764 | */ |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 765 | half = get_half(p); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 766 | emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef ); |
| 767 | emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 768 | return dest; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 769 | case MODE_INTERPOLATE: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 770 | /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered: |
| 771 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 772 | return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 773 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 774 | case MODE_SUBTRACT: |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 775 | return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 776 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 777 | case MODE_DOT3_RGBA: |
| 778 | case MODE_DOT3_RGBA_EXT: |
| 779 | case MODE_DOT3_RGB_EXT: |
| 780 | case MODE_DOT3_RGB: { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 781 | struct ureg tmp0 = get_temp( p ); |
| 782 | struct ureg tmp1 = get_temp( p ); |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 783 | struct ureg neg1 = register_scalar_const(p, -1); |
| 784 | struct ureg two = register_scalar_const(p, 2); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 785 | |
| 786 | /* tmp0 = 2*src0 - 1 |
| 787 | * tmp1 = 2*src1 - 1 |
| 788 | * |
| 789 | * dst = tmp0 dot3 tmp1 |
| 790 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 791 | emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 792 | two, src[0], neg1); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 793 | |
Brian Paul | aa20695 | 2005-09-16 18:14:24 +0000 | [diff] [blame] | 794 | if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 795 | tmp1 = tmp0; |
| 796 | else |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 797 | emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 798 | two, src[1], neg1); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 799 | emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 800 | return dest; |
| 801 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 802 | case MODE_MODULATE_ADD_ATI: |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 803 | /* Arg0 * Arg2 + Arg1 */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 804 | return emit_arith( p, OPCODE_MAD, dest, mask, saturate, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 805 | src[0], src[2], src[1] ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 806 | case MODE_MODULATE_SIGNED_ADD_ATI: { |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 807 | /* Arg0 * Arg2 + Arg1 - 0.5 */ |
| 808 | struct ureg tmp0 = get_temp(p); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 809 | half = get_half(p); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 810 | emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] ); |
| 811 | emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef ); |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 812 | return dest; |
| 813 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 814 | case MODE_MODULATE_SUBTRACT_ATI: |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 815 | /* Arg0 * Arg2 - Arg1 */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 816 | emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) ); |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 817 | return dest; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 818 | default: |
| 819 | return src[0]; |
| 820 | } |
| 821 | } |
| 822 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 823 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 824 | static struct ureg emit_texenv( struct texenv_fragment_program *p, int unit ) |
| 825 | { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 826 | struct state_key *key = p->state; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 827 | GLuint saturate = (unit < p->last_tex_stage); |
| 828 | GLuint rgb_shift, alpha_shift; |
| 829 | struct ureg out, shift; |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 830 | struct ureg dest; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 831 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 832 | if (!key->unit[unit].enabled) { |
| 833 | return get_source(p, SRC_PREVIOUS, 0); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 834 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 835 | |
| 836 | switch (key->unit[unit].ModeRGB) { |
| 837 | case MODE_DOT3_RGB_EXT: |
| 838 | alpha_shift = key->unit[unit].ScaleShiftA; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 839 | rgb_shift = 0; |
| 840 | break; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 841 | case MODE_DOT3_RGBA_EXT: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 842 | alpha_shift = 0; |
| 843 | rgb_shift = 0; |
| 844 | break; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 845 | default: |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 846 | rgb_shift = key->unit[unit].ScaleShiftRGB; |
| 847 | alpha_shift = key->unit[unit].ScaleShiftA; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 848 | break; |
| 849 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 850 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 851 | /* If this is the very last calculation, emit direct to output reg: |
| 852 | */ |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 853 | if (key->separate_specular || |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 854 | unit != p->last_tex_stage || |
| 855 | alpha_shift || |
| 856 | rgb_shift) |
| 857 | dest = get_temp( p ); |
| 858 | else |
Brian Paul | 90ebb58 | 2005-11-02 18:06:12 +0000 | [diff] [blame] | 859 | dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 860 | |
| 861 | /* Emit the RGB and A combine ops |
| 862 | */ |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 863 | if (key->unit[unit].ModeRGB == key->unit[unit].ModeA && |
| 864 | args_match(key, unit)) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 865 | out = emit_combine( p, dest, WRITEMASK_XYZW, saturate, |
| 866 | unit, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 867 | key->unit[unit].NumArgsRGB, |
| 868 | key->unit[unit].ModeRGB, |
| 869 | key->unit[unit].OptRGB); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 870 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 871 | else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT || |
| 872 | key->unit[unit].ModeA == MODE_DOT3_RGBA) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 873 | |
| 874 | out = emit_combine( p, dest, WRITEMASK_XYZW, saturate, |
| 875 | unit, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 876 | key->unit[unit].NumArgsRGB, |
| 877 | key->unit[unit].ModeRGB, |
| 878 | key->unit[unit].OptRGB); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 879 | } |
| 880 | else { |
| 881 | /* Need to do something to stop from re-emitting identical |
| 882 | * argument calculations here: |
| 883 | */ |
| 884 | out = emit_combine( p, dest, WRITEMASK_XYZ, saturate, |
| 885 | unit, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 886 | key->unit[unit].NumArgsRGB, |
| 887 | key->unit[unit].ModeRGB, |
| 888 | key->unit[unit].OptRGB); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 889 | out = emit_combine( p, dest, WRITEMASK_W, saturate, |
| 890 | unit, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 891 | key->unit[unit].NumArgsA, |
| 892 | key->unit[unit].ModeA, |
| 893 | key->unit[unit].OptA); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 894 | } |
| 895 | |
| 896 | /* Deal with the final shift: |
| 897 | */ |
| 898 | if (alpha_shift || rgb_shift) { |
| 899 | if (rgb_shift == alpha_shift) { |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 900 | shift = register_scalar_const(p, 1<<rgb_shift); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 901 | } |
| 902 | else { |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 903 | shift = register_const4f(p, |
| 904 | 1<<rgb_shift, |
| 905 | 1<<rgb_shift, |
| 906 | 1<<rgb_shift, |
| 907 | 1<<alpha_shift); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 908 | } |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 909 | return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 910 | saturate, out, shift, undef ); |
| 911 | } |
| 912 | else |
| 913 | return out; |
| 914 | } |
| 915 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 916 | |
| 917 | |
| 918 | static void load_texture( struct texenv_fragment_program *p, GLuint unit ) |
| 919 | { |
| 920 | if (is_undef(p->src_texture[unit])) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 921 | GLuint dim = p->state->unit[unit].source_index; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 922 | struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit); |
| 923 | struct ureg tmp = get_tex_temp( p ); |
| 924 | |
Brian Paul | bfb5ea3 | 2005-07-19 18:20:04 +0000 | [diff] [blame] | 925 | if (dim == TEXTURE_UNKNOWN_INDEX) |
| 926 | program_error(p, "TexSrcBit"); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 927 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 928 | /* TODO: Use D0_MASK_XY where possible. |
| 929 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 930 | p->src_texture[unit] = emit_texld( p, OPCODE_TXP, |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 931 | tmp, WRITEMASK_XYZW, |
| 932 | unit, dim, texcoord ); |
| 933 | } |
| 934 | } |
| 935 | |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 936 | static GLboolean load_texenv_source( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 937 | GLuint src, GLuint unit ) |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 938 | { |
| 939 | switch (src) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 940 | case SRC_TEXTURE: |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 941 | load_texture(p, unit); |
| 942 | break; |
| 943 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 944 | case SRC_TEXTURE0: |
| 945 | case SRC_TEXTURE1: |
| 946 | case SRC_TEXTURE2: |
| 947 | case SRC_TEXTURE3: |
| 948 | case SRC_TEXTURE4: |
| 949 | case SRC_TEXTURE5: |
| 950 | case SRC_TEXTURE6: |
| 951 | case SRC_TEXTURE7: |
| 952 | if (!p->state->unit[src - SRC_TEXTURE0].enabled) |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 953 | return GL_FALSE; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 954 | load_texture(p, src - SRC_TEXTURE0); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 955 | break; |
| 956 | |
| 957 | default: |
| 958 | break; |
| 959 | } |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 960 | |
| 961 | return GL_TRUE; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 962 | } |
| 963 | |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 964 | static GLboolean load_texunit_sources( struct texenv_fragment_program *p, int unit ) |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 965 | { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 966 | struct state_key *key = p->state; |
| 967 | int i, nr = key->unit[unit].NumArgsRGB; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 968 | for (i = 0; i < nr; i++) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 969 | if (!load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit) || |
| 970 | !load_texenv_source( p, key->unit[unit].OptA[i].Source, unit )) |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 971 | return GL_FALSE; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 972 | } |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 973 | return GL_TRUE; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 974 | } |
| 975 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 976 | static void create_new_program(struct state_key *key, GLcontext *ctx, |
| 977 | struct fragment_program *program) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 978 | { |
| 979 | struct texenv_fragment_program p; |
| 980 | GLuint unit; |
| 981 | struct ureg cf, out; |
Keith Whitwell | 276330b | 2005-05-09 17:58:13 +0000 | [diff] [blame] | 982 | |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 983 | _mesa_memset(&p, 0, sizeof(p)); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 984 | p.ctx = ctx; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 985 | p.state = key; |
| 986 | p.program = program; |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 987 | |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 988 | p.program->Base.Instructions = MALLOC(sizeof(struct prog_instruction) * 100); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 989 | p.program->Base.NumInstructions = 0; |
Keith Whitwell | 276330b | 2005-05-09 17:58:13 +0000 | [diff] [blame] | 990 | p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB; |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 991 | p.program->NumTexIndirections = 1; /* correct? */ |
| 992 | p.program->NumTexInstructions = 0; |
| 993 | p.program->NumAluInstructions = 0; |
Keith Whitwell | 9ca8815 | 2005-05-10 09:56:02 +0000 | [diff] [blame] | 994 | p.program->Base.String = 0; |
| 995 | p.program->Base.NumInstructions = |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 996 | p.program->Base.NumTemporaries = |
| 997 | p.program->Base.NumParameters = |
| 998 | p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0; |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 999 | p.program->Base.Parameters = _mesa_new_parameter_list(); |
Keith Whitwell | dbeea25 | 2005-05-10 13:57:50 +0000 | [diff] [blame] | 1000 | |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 1001 | p.program->Base.InputsRead = 0; |
| 1002 | p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1003 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 1004 | for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++) |
| 1005 | p.src_texture[unit] = undef; |
| 1006 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1007 | p.src_previous = undef; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1008 | p.last_tex_stage = 0; |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 1009 | release_temps(&p); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1010 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1011 | if (key->enabled_units) { |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 1012 | /* First pass - to support texture_env_crossbar, first identify |
| 1013 | * all referenced texture sources and emit texld instructions |
| 1014 | * for each: |
| 1015 | */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1016 | for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1017 | if (key->unit[unit].enabled) { |
| 1018 | if (load_texunit_sources( &p, unit )) |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 1019 | p.last_tex_stage = unit; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 1022 | /* Second pass - emit combine instructions to build final color: |
| 1023 | */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1024 | for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1025 | if (key->enabled_units & (1<<unit)) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1026 | p.src_previous = emit_texenv( &p, unit ); |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 1027 | release_temps(&p); /* release all temps */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1028 | } |
| 1029 | } |
| 1030 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1031 | cf = get_source( &p, SRC_PREVIOUS, 0 ); |
Brian Paul | 90ebb58 | 2005-11-02 18:06:12 +0000 | [diff] [blame] | 1032 | out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1033 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1034 | if (key->separate_specular) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1035 | /* Emit specular add. |
| 1036 | */ |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1037 | struct ureg s = register_input(&p, FRAG_ATTRIB_COL1); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 1038 | emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef ); |
| 1039 | emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1040 | } |
Brian Paul | aa20695 | 2005-09-16 18:14:24 +0000 | [diff] [blame] | 1041 | else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1042 | /* Will wind up in here if no texture enabled or a couple of |
| 1043 | * other scenarios (GL_REPLACE for instance). |
| 1044 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 1045 | emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1046 | } |
| 1047 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1048 | /* Finish up: |
| 1049 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 1050 | emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1051 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1052 | if (key->fog_enabled) { |
| 1053 | /* Pull fog mode from GLcontext, the value in the state key is |
| 1054 | * a reduced value and not what is expected in FogOption |
| 1055 | */ |
Keith Whitwell | 276330b | 2005-05-09 17:58:13 +0000 | [diff] [blame] | 1056 | p.program->FogOption = ctx->Fog.Mode; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1057 | } else |
Keith Whitwell | 276330b | 2005-05-09 17:58:13 +0000 | [diff] [blame] | 1058 | p.program->FogOption = GL_NONE; |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1059 | |
Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1060 | if (p.program->NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1061 | program_error(&p, "Exceeded max nr indirect texture lookups"); |
| 1062 | |
Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1063 | if (p.program->NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1064 | program_error(&p, "Exceeded max TEX instructions"); |
| 1065 | |
Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1066 | if (p.program->NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1067 | program_error(&p, "Exceeded max ALU instructions"); |
| 1068 | |
Keith Whitwell | 8b88f62 | 2005-05-10 11:39:50 +0000 | [diff] [blame] | 1069 | |
Keith Whitwell | dbeea25 | 2005-05-10 13:57:50 +0000 | [diff] [blame] | 1070 | /* Notify driver the fragment program has (actually) changed. |
Keith Whitwell | 8b88f62 | 2005-05-10 11:39:50 +0000 | [diff] [blame] | 1071 | */ |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 1072 | if (ctx->Driver.ProgramStringNotify || DISASSEM) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1073 | if (ctx->Driver.ProgramStringNotify) |
| 1074 | ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB, |
| 1075 | &p.program->Base ); |
Keith Whitwell | dbeea25 | 2005-05-10 13:57:50 +0000 | [diff] [blame] | 1076 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1077 | if (DISASSEM) { |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 1078 | _mesa_print_program(&p.program->Base); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1079 | _mesa_printf("\n"); |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 1082 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1083 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1084 | } |
| 1085 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1086 | static void *search_cache( struct texenvprog_cache *cache, |
| 1087 | GLuint hash, |
| 1088 | const void *key, |
| 1089 | GLuint keysize) |
| 1090 | { |
| 1091 | struct texenvprog_cache *c; |
| 1092 | |
| 1093 | for (c = cache; c; c = c->next) { |
Brian Paul | aa20695 | 2005-09-16 18:14:24 +0000 | [diff] [blame] | 1094 | if (c->hash == hash && _mesa_memcmp(c->key, key, keysize) == 0) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1095 | return c->data; |
| 1096 | } |
| 1097 | |
| 1098 | return NULL; |
| 1099 | } |
| 1100 | |
| 1101 | static void cache_item( struct texenvprog_cache **cache, |
| 1102 | GLuint hash, |
| 1103 | void *key, |
| 1104 | void *data ) |
| 1105 | { |
| 1106 | struct texenvprog_cache *c = MALLOC(sizeof(*c)); |
| 1107 | c->hash = hash; |
| 1108 | c->key = key; |
| 1109 | c->data = data; |
| 1110 | c->next = *cache; |
| 1111 | *cache = c; |
| 1112 | } |
| 1113 | |
| 1114 | static GLuint hash_key( struct state_key *key ) |
| 1115 | { |
| 1116 | GLuint *ikey = (GLuint *)key; |
| 1117 | GLuint hash = 0, i; |
| 1118 | |
| 1119 | /* I'm sure this can be improved on, but speed is important: |
| 1120 | */ |
| 1121 | for (i = 0; i < sizeof(*key)/sizeof(GLuint); i++) |
| 1122 | hash ^= ikey[i]; |
| 1123 | |
| 1124 | return hash; |
| 1125 | } |
| 1126 | |
| 1127 | void _mesa_UpdateTexEnvProgram( GLcontext *ctx ) |
| 1128 | { |
| 1129 | struct state_key *key; |
| 1130 | GLuint hash; |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1131 | struct fragment_program *prev = ctx->FragmentProgram._Current; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1132 | |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1133 | if (!ctx->FragmentProgram._Enabled) { |
| 1134 | key = make_state_key(ctx); |
| 1135 | hash = hash_key(key); |
| 1136 | |
| 1137 | ctx->FragmentProgram._Current = ctx->_TexEnvProgram = |
| 1138 | (struct fragment_program *) |
| 1139 | search_cache(ctx->Texture.env_fp_cache, hash, key, sizeof(*key)); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1140 | |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1141 | if (!ctx->_TexEnvProgram) { |
Aapo Tahkola | 40ca5b4 | 2005-11-18 17:57:27 +0000 | [diff] [blame] | 1142 | if (0) _mesa_printf("Building new texenv proggy for key %x\n", hash); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1143 | |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1144 | ctx->FragmentProgram._Current = ctx->_TexEnvProgram = |
| 1145 | (struct fragment_program *) |
| 1146 | ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1147 | |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1148 | create_new_program(key, ctx, ctx->_TexEnvProgram); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1149 | |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1150 | cache_item(&ctx->Texture.env_fp_cache, hash, key, ctx->_TexEnvProgram); |
| 1151 | } else { |
| 1152 | FREE(key); |
Aapo Tahkola | 40ca5b4 | 2005-11-18 17:57:27 +0000 | [diff] [blame] | 1153 | if (0) _mesa_printf("Found existing texenv program for key %x\n", hash); |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1154 | } |
| 1155 | } |
| 1156 | else { |
| 1157 | ctx->FragmentProgram._Current = ctx->FragmentProgram.Current; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1158 | } |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1159 | |
| 1160 | /* Tell the driver about the change. Could define a new target for |
| 1161 | * this? |
| 1162 | */ |
| 1163 | if (ctx->FragmentProgram._Current != prev) |
| 1164 | ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, (struct program *) |
| 1165 | ctx->FragmentProgram._Current); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
| 1168 | void _mesa_TexEnvProgramCacheDestroy( GLcontext *ctx ) |
| 1169 | { |
| 1170 | struct texenvprog_cache *a, *tmp; |
| 1171 | |
| 1172 | for (a = ctx->Texture.env_fp_cache; a; a = tmp) { |
| 1173 | tmp = a->next; |
| 1174 | FREE(a->key); |
| 1175 | FREE(a->data); |
| 1176 | FREE(a); |
| 1177 | } |
| 1178 | } |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1179 | |