summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i915simple/i915_state_derived.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-09-21 11:20:29 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-09-21 11:20:29 -0600
commite9259ad0d7f674a1f2f9156ba0baeedc0e7d0d54 (patch)
tree532a8e57afc6d1a86207c51bd51e79aa7e531f43 /src/mesa/pipe/i915simple/i915_state_derived.c
parent97b81eb98f57e9405ce3665df24eedd1a1af39fc (diff)
Get rid of TGSI_SEMANTIC_TEXCOORD and just use TGSI_SEMANTIC_GENERIC.
Diffstat (limited to 'src/mesa/pipe/i915simple/i915_state_derived.c')
-rw-r--r--src/mesa/pipe/i915simple/i915_state_derived.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/pipe/i915simple/i915_state_derived.c b/src/mesa/pipe/i915simple/i915_state_derived.c
index e825971199..30a11f1ef2 100644
--- a/src/mesa/pipe/i915simple/i915_state_derived.c
+++ b/src/mesa/pipe/i915simple/i915_state_derived.c
@@ -74,7 +74,8 @@ static void calculate_vertex_layout( struct i915_context *i915 )
vinfo->hwfmt[0] |= S4_VFMT_SPEC_FOG;
}
break;
- case TGSI_SEMANTIC_TEXCOORD:
+ case TGSI_SEMANTIC_GENERIC:
+ /* usually a texcoord */
{
const uint unit = fs->input_semantic_index[i];
uint hwtc;