aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/mesa/main/texstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'mesalib/src/mesa/main/texstate.h')
-rw-r--r--mesalib/src/mesa/main/texstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesalib/src/mesa/main/texstate.h b/mesalib/src/mesa/main/texstate.h
index abc07eafb..662435b47 100644
--- a/mesalib/src/mesa/main/texstate.h
+++ b/mesalib/src/mesa/main/texstate.h
@@ -41,7 +41,7 @@
static inline struct gl_texture_unit *
_mesa_get_tex_unit(struct gl_context *ctx, GLuint unit)
{
- ASSERT(unit < Elements(ctx->Texture.Unit));
+ assert(unit < ARRAY_SIZE(ctx->Texture.Unit));
return &(ctx->Texture.Unit[unit]);
}