diff options
author | Zack Rusin <[email protected]> | 2013-03-13 16:46:24 -0700 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2013-03-27 03:53:01 -0700 |
commit | 90ee8de7006b4f215c76b61f42867e1141cd5efb (patch) | |
tree | 5e6c86948248f9509cf8a4f4ae9ebd2741de03ed | |
parent | 3f7d9710e8f128c6bf6da3a87789afac8524ccd7 (diff) |
graw/gs: add missing max output vertices to all tests
A few tests were missing this crucial property.
Signed-off-by: Zack Rusin <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: José Fonseca <[email protected]>
4 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/tests/graw/geometry-shader/add-mix.txt b/src/gallium/tests/graw/geometry-shader/add-mix.txt index 63e689a5158..bbe4164903d 100644 --- a/src/gallium/tests/graw/geometry-shader/add-mix.txt +++ b/src/gallium/tests/graw/geometry-shader/add-mix.txt @@ -1,6 +1,7 @@ GEOM PROPERTY GS_INPUT_PRIMITIVE TRIANGLES PROPERTY GS_OUTPUT_PRIMITIVE TRIANGLE_STRIP +PROPERTY GS_MAX_OUTPUT_VERTICES 3 DCL IN[][0], POSITION, CONSTANT DCL IN[][1], COLOR, CONSTANT DCL OUT[0], POSITION, CONSTANT diff --git a/src/gallium/tests/graw/geometry-shader/add.txt b/src/gallium/tests/graw/geometry-shader/add.txt index d8c7c41e9bd..8373dac46ec 100644 --- a/src/gallium/tests/graw/geometry-shader/add.txt +++ b/src/gallium/tests/graw/geometry-shader/add.txt @@ -1,6 +1,7 @@ GEOM PROPERTY GS_INPUT_PRIMITIVE TRIANGLES PROPERTY GS_OUTPUT_PRIMITIVE LINE_STRIP +PROPERTY GS_MAX_OUTPUT_VERTICES 3 DCL IN[][0], POSITION, CONSTANT DCL IN[][1], COLOR, CONSTANT DCL OUT[0], POSITION, CONSTANT diff --git a/src/gallium/tests/graw/geometry-shader/mov-cb-2d.txt b/src/gallium/tests/graw/geometry-shader/mov-cb-2d.txt index 058acfbcb5a..339fd1e9362 100644 --- a/src/gallium/tests/graw/geometry-shader/mov-cb-2d.txt +++ b/src/gallium/tests/graw/geometry-shader/mov-cb-2d.txt @@ -1,6 +1,7 @@ GEOM PROPERTY GS_INPUT_PRIMITIVE TRIANGLES PROPERTY GS_OUTPUT_PRIMITIVE TRIANGLE_STRIP +PROPERTY GS_MAX_OUTPUT_VERTICES 3 DCL IN[][0], POSITION, CONSTANT DCL IN[][1], COLOR, CONSTANT DCL OUT[0], POSITION, CONSTANT diff --git a/src/gallium/tests/graw/geometry-shader/mov.txt b/src/gallium/tests/graw/geometry-shader/mov.txt index 97150a5da45..ad141f1171c 100644 --- a/src/gallium/tests/graw/geometry-shader/mov.txt +++ b/src/gallium/tests/graw/geometry-shader/mov.txt @@ -1,6 +1,7 @@ GEOM PROPERTY GS_INPUT_PRIMITIVE TRIANGLES PROPERTY GS_OUTPUT_PRIMITIVE TRIANGLE_STRIP +PROPERTY GS_MAX_OUTPUT_VERTICES 3 DCL IN[][0], POSITION, CONSTANT DCL IN[][1], COLOR, CONSTANT DCL OUT[0], POSITION, CONSTANT |