summaryrefslogtreecommitdiffstats
path: root/src/gallium/tests/graw/fs-write-z.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/tests/graw/fs-write-z.c')
-rw-r--r--src/gallium/tests/graw/fs-write-z.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/tests/graw/fs-write-z.c b/src/gallium/tests/graw/fs-write-z.c
index 12267ed820d..196c67bc368 100644
--- a/src/gallium/tests/graw/fs-write-z.c
+++ b/src/gallium/tests/graw/fs-write-z.c
@@ -7,6 +7,8 @@
#include "graw_util.h"
+#include "util/macros.h"
+
static int width = 300;
static int height = 300;
@@ -69,7 +71,7 @@ static struct vertex vertices[] =
},
};
-#define NUM_VERTS (sizeof(vertices) / sizeof(vertices[0]))
+#define NUM_VERTS ARRAY_SIZE(vertices)