summaryrefslogtreecommitdiff
path: root/src/gallium/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/tests')
-rw-r--r--src/gallium/tests/graw/geometry-shader/mov-non-seq.txt23
1 files changed, 0 insertions, 23 deletions
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
index e0f65748ec..0000000000
--- a/src/gallium/tests/graw/geometry-shader/mov-non-seq.txt
+++ /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