diff options
author | Keith Whitwell <[email protected]> | 2010-06-07 19:52:43 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-06-07 19:53:01 +0100 |
commit | d095d95e77cb3a7a76962572c1056dcbb2056f07 (patch) | |
tree | fb8959f189776187bebeffd67fc708b8ce38c4c2 /src/gallium/tests/graw/geometry-shader/mov.txt | |
parent | a3dffd76d3408c6da089f467f5cc53b770dbcc86 (diff) |
graw: add gs-test.c and some simple geometry shader examples
Diffstat (limited to 'src/gallium/tests/graw/geometry-shader/mov.txt')
-rw-r--r-- | src/gallium/tests/graw/geometry-shader/mov.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/gallium/tests/graw/geometry-shader/mov.txt b/src/gallium/tests/graw/geometry-shader/mov.txt new file mode 100644 index 00000000000..c37051de8a7 --- /dev/null +++ b/src/gallium/tests/graw/geometry-shader/mov.txt @@ -0,0 +1,23 @@ +GEOM +PROPERTY GS_INPUT_PRIMITIVE TRIANGLES +PROPERTY GS_OUTPUT_PRIMITIVE TRIANGLE_STRIP +DCL IN[][0], POSITION, CONSTANT +DCL IN[][1], COLOR, CONSTANT +DCL OUT[0], POSITION, CONSTANT +DCL OUT[1], COLOR, CONSTANT + +MOV OUT[0], IN[0][0] +MOV OUT[1], IN[0][1] +EMIT + +MOV OUT[0], IN[1][0] +MOV OUT[1], IN[0][1] +EMIT + +MOV OUT[0], IN[2][0] +MOV OUT[1], IN[2][1] +EMIT + +ENDPRIM + +END |