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