From 8842be1132ccbcf45ebf65bfd048e20d0b7fff92 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 28 Apr 2016 11:42:58 -0600 Subject: [PATCH] rbug: s/Elements/ARRAY_SIZE/ Signed-off-by: Brian Paul --- src/gallium/drivers/rbug/rbug_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/rbug/rbug_context.c b/src/gallium/drivers/rbug/rbug_context.c index 38dee7434cb..54564c1a4be 100644 --- a/src/gallium/drivers/rbug/rbug_context.c +++ b/src/gallium/drivers/rbug/rbug_context.c @@ -87,7 +87,7 @@ rbug_draw_block_locked(struct rbug_context *rb_pipe, int flag) if (rb_pipe->draw_rule.surf == rb_pipe->curr.cbufs[k]) block = TRUE; if (rb_pipe->draw_rule.texture) { - for (sh = 0; sh < Elements(rb_pipe->curr.num_views); sh++) { + for (sh = 0; sh < ARRAY_SIZE(rb_pipe->curr.num_views); sh++) { for (k = 0; k < rb_pipe->curr.num_views[sh]; k++) { if (rb_pipe->draw_rule.texture == rb_pipe->curr.texs[sh][k]) { block = TRUE; -- 2.30.2