aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/tests/graw/vertex-shader/vert-arl.sh
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2011-04-23 10:44:43 +0100
committerJosé Fonseca <[email protected]>2011-04-23 11:07:27 +0100
commitde29ee0e6de9e34d19ed20017028614cce7b4ba1 (patch)
treeba6c276abc3dcc4b0c3c5e5341001203aae9118a /src/gallium/tests/graw/vertex-shader/vert-arl.sh
parent931432fea69c29b4029ff23613468c8ad2c0181e (diff)
graw: Replace dead symlinks to delete python statetracker shaders with their contents.
Diffstat (limited to 'src/gallium/tests/graw/vertex-shader/vert-arl.sh')
-rw-r--r--src/gallium/tests/graw/vertex-shader/vert-arl.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/gallium/tests/graw/vertex-shader/vert-arl.sh b/src/gallium/tests/graw/vertex-shader/vert-arl.sh
new file mode 100644
index 00000000000..0039597f6f0
--- /dev/null
+++ b/src/gallium/tests/graw/vertex-shader/vert-arl.sh
@@ -0,0 +1,23 @@
+VERT
+
+DCL IN[0]
+DCL OUT[0], POSITION
+DCL OUT[1], COLOR
+
+DCL TEMP[0]
+
+DCL ADDR[0]
+
+IMM FLT32 { 3.0, 1.0, 1.0, 1.0 }
+IMM FLT32 { 1.0, 0.0, 0.0, 1.0 }
+IMM FLT32 { 0.0, 1.0, 0.0, 1.0 }
+IMM FLT32 { 0.0, 0.0, 1.0, 1.0 }
+IMM FLT32 { 1.0, 1.0, 0.0, 1.0 }
+IMM FLT32 { 0.0, 1.0, 1.0, 1.0 }
+
+MOV OUT[0], IN[0]
+MUL TEMP[0], IN[0], IMM[0]
+ARL ADDR[0].x, TEMP[0]
+MOV OUT[1], IMM[ADDR[0].x + 3]
+
+END