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 18697d3172711ada041a582911fd328bf0f305b2..f848a78d18ab1cc41bde7aa0a3218ea0ceab4cf2 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 b195793b5506982ac21adaad67cf42107b41d7e1..333fcc8f813506aa7701fbcfb1d2a2991976759b 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 e3cd0c007e41f43b26d9823ce678ec95220cfc13..d395cc2d57c146b5fd3455d0a40009894ee6a203 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 14f3411c1b2e66dd69464774b11af2b3804f8ce9..5770ff8258acf3faa8ee5f57c1fa0d6098717b71 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 762ab3f28419e368bd4048d25fc82c84523f9004..1f0939b1dc3560c671fc11e8d8d2b8451a8ebbbe 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[] =