diff options
author | Zack Rusin <[email protected]> | 2010-06-14 10:48:40 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2010-06-14 10:49:16 -0400 |
commit | 5d5fa34757382e4d1d6ca0d3825bd16c9a8f3d72 (patch) | |
tree | 736b14c7ad28ab0f8c9a11b7bc658c008252e034 /src/gallium/tests/graw/gs-test.c | |
parent | 8ad410dc13e1b05a987699685c1a291f96442101 (diff) |
graw: small fixups for the gs examples
Diffstat (limited to 'src/gallium/tests/graw/gs-test.c')
-rw-r--r-- | src/gallium/tests/graw/gs-test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/tests/graw/gs-test.c b/src/gallium/tests/graw/gs-test.c index e8c82baaaff..8d25fed0f54 100644 --- a/src/gallium/tests/graw/gs-test.c +++ b/src/gallium/tests/graw/gs-test.c @@ -85,13 +85,13 @@ static struct vertex vertices_strip[] = { 1, 0, 0, 1 }, { 1, -1, 0, 1 } }, - { {-0.9, -0.9, 0.0, 1.0 }, + { {-0.9, 0.9, 0.0, 1.0 }, { 0, 1, 0, 1 }, - { -1, -1, 0, 1 } }, + { -1, 1, 0, 1 } }, - { {-0.9, 0.9, 0.0, 1.0 }, + { {-0.9, -0.9, 0.0, 1.0 }, { 1, 1, 0, 1 }, - { -1, 1, 0, 1 } }, + { -1, -1, 0, 1 } }, }; static float constants[] = |