vl: fix shader in/out numbering
authorChristian König <deathsimple@vodafone.de>
Sat, 3 Mar 2012 09:52:34 +0000 (10:52 +0100)
committerChristian König <deathsimple@vodafone.de>
Sat, 3 Mar 2012 09:53:07 +0000 (10:53 +0100)
Fix all the other wrong numberings.

Signed-off-by: Christian König <deathsimple@vodafone.de>
src/gallium/auxiliary/vl/vl_idct.c
src/gallium/auxiliary/vl/vl_matrix_filter.c
src/gallium/auxiliary/vl/vl_mc.c
src/gallium/auxiliary/vl/vl_median_filter.c
src/gallium/auxiliary/vl/vl_zscan.c

index 18697d3..f848a78 100644 (file)
@@ -43,8 +43,8 @@
 
 enum VS_OUTPUT
 {
-   VS_O_VPOS,
-   VS_O_L_ADDR0,
+   VS_O_VPOS = 0,
+   VS_O_L_ADDR0 = 0,
    VS_O_L_ADDR1,
    VS_O_R_ADDR0,
    VS_O_R_ADDR1
index b195793..333fcc8 100644 (file)
@@ -41,8 +41,8 @@
 
 enum VS_OUTPUT
 {
-   VS_O_VPOS,
-   VS_O_VTEX
+   VS_O_VPOS = 0,
+   VS_O_VTEX = 0
 };
 
 static void *
index e3cd0c0..d395cc2 100644 (file)
@@ -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,
index 14f3411..5770ff8 100644 (file)
@@ -39,8 +39,8 @@
 
 enum VS_OUTPUT
 {
-   VS_O_VPOS,
-   VS_O_VTEX
+   VS_O_VPOS = 0,
+   VS_O_VTEX = 0
 };
 
 static void *
index 762ab3f..1f0939b 100644 (file)
@@ -45,8 +45,8 @@
 
 enum VS_OUTPUT
 {
-   VS_O_VPOS,
-   VS_O_VTEX
+   VS_O_VPOS = 0,
+   VS_O_VTEX = 0
 };
 
 const int vl_zscan_linear[] =