gallium/tests: use ARRAY_SIZE macro
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user