summaryrefslogtreecommitdiff
path: root/tests/shaders
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2015-06-18 21:50:06 -0700
committerKenneth Graunke <kenneth@whitecape.org>2015-06-18 22:16:24 -0700
commit0e1b44964ff4bc766653b0d7de37301cc5211640 (patch)
tree94c89b4e97f638cb825cdea8791942abad3b1da9 /tests/shaders
parentfd8133eb43b4d3f7e8f8d90e377088c78723f6dd (diff)
Port vp-arl-neg-array-2.vpfp to shader_runner
This commit was autogenerated by Python and Bash scripting.
Diffstat (limited to 'tests/shaders')
-rw-r--r--tests/shaders/generic/vp-arl-neg-array-2.vpfp24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/shaders/generic/vp-arl-neg-array-2.vpfp b/tests/shaders/generic/vp-arl-neg-array-2.vpfp
deleted file mode 100644
index 22aba23e0..000000000
--- a/tests/shaders/generic/vp-arl-neg-array-2.vpfp
+++ /dev/null
@@ -1,24 +0,0 @@
-; Tests loading of a variable entry from a constant array with a negative
-; address register value.
-
-!!ARBvp1.0
-OPTION ARB_position_invariant;
-PARAM vals[4] = {
- {0.5, 1.0, 2.0, 0.0},
- {1.0, 0.0, 0.8, 0.0},
- {1.0, 0.0, 0.5, 0.0},
- {0.8, 1.0, 0.0, 0.0}
- };
-ADDRESS A0;
-ARL A0.x, program.local[0].x;
-MOV result.color, vals[A0.x+6];
-END
-
-!!ARBfp1.0
-MOV result.color, fragment.color;
-END
-
-!!test
-vertex.local[0] -3 0.0 0.0 0.0
-expected 0.8 1.0 0.0 0.0
-