summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/vl/vl_mc.c
diff options
context:
space:
mode:
authorChristian König <[email protected]>2012-03-03 10:52:34 +0100
committerChristian König <[email protected]>2012-03-03 10:53:07 +0100
commit95594bae47d8b3302be188e6f0be2d69c5507bb3 (patch)
tree2949bc9ed5334850ac9c39646890becfb268712d /src/gallium/auxiliary/vl/vl_mc.c
parent31b044506e14c482162596641218bdae520a466d (diff)
vl: fix shader in/out numbering
Fix all the other wrong numberings. Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_mc.c')
-rw-r--r--src/gallium/auxiliary/vl/vl_mc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/vl/vl_mc.c b/src/gallium/auxiliary/vl/vl_mc.c
index e3cd0c007e4..d395cc2d57c 100644
--- a/src/gallium/auxiliary/vl/vl_mc.c
+++ b/src/gallium/auxiliary/vl/vl_mc.c
@@ -41,8 +41,8 @@
enum VS_OUTPUT
{
- VS_O_VPOS,
- VS_O_VTOP,
+ VS_O_VPOS = 0,
+ VS_O_VTOP = 0,
VS_O_VBOTTOM,
VS_O_FLAGS = VS_O_VTOP,