Module: Mesa Branch: master Commit: 90ee8de7006b4f215c76b61f42867e1141cd5efb URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=90ee8de7006b4f215c76b61f42867e1141cd5efb
Author: Zack Rusin <[email protected]> Date: Wed Mar 13 16:46:24 2013 -0700 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]> --- src/gallium/tests/graw/geometry-shader/add-mix.txt | 1 + src/gallium/tests/graw/geometry-shader/add.txt | 1 + .../tests/graw/geometry-shader/mov-cb-2d.txt | 1 + src/gallium/tests/graw/geometry-shader/mov.txt | 1 + 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 63e689a..bbe4164 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 d8c7c41..8373dac 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 058acfb..339fd1e 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 97150a5..ad141f1 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 _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
