commit | e5f29393da1c624e22b7bde9b51d5f3678d73859 | [log] [tgz] |
---|---|---|
author | John Kessenich <cepheus@frii.com> | Mon May 16 17:39:50 2016 -0600 |
committer | John Kessenich <cepheus@frii.com> | Mon May 16 17:39:50 2016 -0600 |
tree | 9e575485e37c1937bf649f891cf66bb07d3c9b4a | |
parent | e0a24778dd31f4e225c7f0b7ad2542a03b4b25e2 [diff] [blame] |
Tests: Add a set of gtest-file-based HLSL tests.
diff --git a/Test/hlsl.precedence.frag b/Test/hlsl.precedence.frag new file mode 100644 index 0000000..eae0435 --- /dev/null +++ b/Test/hlsl.precedence.frag
@@ -0,0 +1,9 @@ +float4 PixelShaderFunction( + float4 a1, + float4 a2, + float4 a3, + float4 a4 + ) : COLOR0 +{ + return a1 + a2 * a3 + a4; +}