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