mapi: replace Elements() with ARRAY_SIZE()
Acked-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
@@ -83,7 +83,7 @@ const char *_mesa_lookup_enum_by_nr( int nr )
|
||||
STATIC_ASSERT(sizeof(enum_string_table) < (1 << 16));
|
||||
|
||||
elt = bsearch(& nr, enum_string_table_offsets,
|
||||
Elements(enum_string_table_offsets),
|
||||
ARRAY_SIZE(enum_string_table_offsets),
|
||||
sizeof(enum_string_table_offsets[0]),
|
||||
(cfunc) compar_nr);
|
||||
|
||||
@@ -127,7 +127,7 @@ static const char *prim_names[PRIM_MAX+3] = {
|
||||
const char *
|
||||
_mesa_lookup_prim_by_nr(GLuint nr)
|
||||
{
|
||||
if (nr < Elements(prim_names))
|
||||
if (nr < ARRAY_SIZE(prim_names))
|
||||
return prim_names[nr];
|
||||
else
|
||||
return "invalid mode";
|
||||
|
||||
Reference in New Issue
Block a user