graw: remove wrong test
authorZack Rusin <zackr@vmware.com>
Wed, 16 Jun 2010 19:10:21 +0000 (15:10 -0400)
committerZack Rusin <zackr@vmware.com>
Wed, 16 Jun 2010 19:10:21 +0000 (15:10 -0400)
src/gallium/tests/graw/geometry-shader/mov-non-seq.txt [deleted file]

diff --git a/src/gallium/tests/graw/geometry-shader/mov-non-seq.txt b/src/gallium/tests/graw/geometry-shader/mov-non-seq.txt
deleted file mode 100644 (file)
index e0f6574..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-GEOM
-PROPERTY GS_INPUT_PRIMITIVE TRIANGLES
-PROPERTY GS_OUTPUT_PRIMITIVE TRIANGLE_STRIP
-DCL IN[][0], POSITION, CONSTANT
-DCL IN[][3], GENERIC[1], CONSTANT
-DCL OUT[0], POSITION, CONSTANT
-DCL OUT[1], COLOR, CONSTANT
-
-MOV OUT[0], IN[0][0]
-MOV OUT[1], IN[0][3]
-EMIT
-
-MOV OUT[0], IN[1][0]
-MOV OUT[1], IN[1][3]
-EMIT
-
-MOV OUT[0], IN[2][0]
-MOV OUT[1], IN[2][3]
-EMIT
-
-ENDPRIM
-
-END