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