diff options
Diffstat (limited to 'src/gallium/tests/graw/vertex-shader/vert-abs.sh')
-rw-r--r-- | src/gallium/tests/graw/vertex-shader/vert-abs.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gallium/tests/graw/vertex-shader/vert-abs.sh b/src/gallium/tests/graw/vertex-shader/vert-abs.sh new file mode 100644 index 00000000000..062a48b531e --- /dev/null +++ b/src/gallium/tests/graw/vertex-shader/vert-abs.sh @@ -0,0 +1,15 @@ +VERT + +DCL IN[0] +DCL IN[1] +DCL OUT[0], POSITION +DCL OUT[1], COLOR +DCL TEMP[0] + +IMM FLT32 { 0.2, 0.2, 0.0, 0.0 } + +ADD TEMP[0], IN[0], IMM[0] +ABS OUT[0], TEMP[0] +MOV OUT[1], IN[1] + +END |