diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2015-06-18 21:50:06 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2015-06-18 22:16:24 -0700 |
commit | 0e1b44964ff4bc766653b0d7de37301cc5211640 (patch) | |
tree | 94c89b4e97f638cb825cdea8791942abad3b1da9 /tests/shaders | |
parent | fd8133eb43b4d3f7e8f8d90e377088c78723f6dd (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.vpfp | 24 |
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 - |