gallium/tests: use ARRAY_SIZE macro
authorEric Engestrom <eric.engestrom@imgtec.com>
Wed, 6 Sep 2017 10:33:15 +0000 (11:33 +0100)
committerEric Engestrom <eric.engestrom@imgtec.com>
Fri, 8 Sep 2017 09:29:40 +0000 (10:29 +0100)
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/gallium/tests/graw/fs-fragcoord.c
src/gallium/tests/graw/fs-frontface.c
src/gallium/tests/graw/fs-write-z.c

index cf7642c78224f211f45df63857ac8a0efad289a6..9afea0caa0bf86d3e0d13396bf16ecf615ce185c 100644 (file)
@@ -7,6 +7,8 @@
 
 #include "graw_util.h"
 
+#include "util/macros.h"
+
 
 static int width = 300;
 static int height = 300;
@@ -44,7 +46,7 @@ static struct vertex vertices[] =
    }
 };
 
-#define NUM_VERTS (sizeof(vertices) / sizeof(vertices[0]))
+#define NUM_VERTS ARRAY_SIZE(vertices)
 
 
 static void
index 32a13cb9e2b93494f87d366279def04f490726b7..3ad89f6b646c982c3b963c0a05260e3bf9c86c53 100644 (file)
@@ -5,6 +5,8 @@
 
 #include "graw_util.h"
 
+#include "util/macros.h"
+
 
 static int width = 300;
 static int height = 300;
@@ -65,7 +67,7 @@ static struct vertex vertices[] =
    },
 };
 
-#define NUM_VERTS (sizeof(vertices) / sizeof(vertices[0]))
+#define NUM_VERTS ARRAY_SIZE(vertices)
 
 
 
index 12267ed820d83fbed586c3bec47c43b9d9e6c90c..196c67bc368852df756067c833336eb865c2c703 100644 (file)
@@ -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)