From: Brian Paul Date: Thu, 9 Sep 2010 21:11:37 +0000 (-0600) Subject: graw: fix array size, indentation, X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d851dae919f77180ab70035ad621ea0424162c43;p=mesa.git graw: fix array size, indentation, --- diff --git a/src/gallium/tests/graw/tri.c b/src/gallium/tests/graw/tri.c index 4dbd2c062a5..8f68fc77d48 100644 --- a/src/gallium/tests/graw/tri.c +++ b/src/gallium/tests/graw/tri.c @@ -31,16 +31,19 @@ struct vertex { float color[4]; }; -static struct vertex vertices[4] = +static struct vertex vertices[3] = { - { { 0.0f, -0.9f, 0.0f, 1.0f }, - { 1.0f, 0.0f, 0.0f, 1.0f } + { + { 0.0f, -0.9f, 0.0f, 1.0f }, + { 1.0f, 0.0f, 0.0f, 1.0f } }, - { { -0.9f, 0.9f, 0.0f, 1.0f }, - { 0.0f, 1.0f, 0.0f, 1.0f } + { + { -0.9f, 0.9f, 0.0f, 1.0f }, + { 0.0f, 1.0f, 0.0f, 1.0f } }, - { { 0.9f, 0.9f, 0.0f, 1.0f }, - { 0.0f, 0.0f, 1.0f, 1.0f } + { + { 0.9f, 0.9f, 0.0f, 1.0f }, + { 0.0f, 0.0f, 1.0f, 1.0f } } };