summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-11-05 17:42:13 +0000
committerKeith Whitwell <keithw@vmware.com>2009-11-05 17:42:13 +0000
commit205871c76ad2e655a9180900359d8f9ac690a912 (patch)
treea547f9a22957b47d54c6f20d980577b24bc2ebe4
parent674c390aaf9d797dbedda1285d4fdacb3d334a67 (diff)
i965g: use Elements in loops over arrays
-rw-r--r--src/gallium/drivers/i965/brw_context.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/i965/brw_context.c b/src/gallium/drivers/i965/brw_context.c
index 2cee7a7a3cf..8e1421e7386 100644
--- a/src/gallium/drivers/i965/brw_context.c
+++ b/src/gallium/drivers/i965/brw_context.c
@@ -85,12 +85,12 @@ static void brw_destroy_context( struct pipe_context *pipe )
bo_reference(&brw->sf.state_bo, NULL);
bo_reference(&brw->sf.vp_bo, NULL);
- for (i = 0; i < BRW_MAX_TEX_UNIT; i++)
+ for (i = 0; i < Elements(brw->wm.sdc_bo); i++)
bo_reference(&brw->wm.sdc_bo[i], NULL);
bo_reference(&brw->wm.bind_bo, NULL);
- for (i = 0; i < BRW_WM_MAX_SURF; i++)
+ for (i = 0; i < Elements(brw->wm.surf_bo); i++)
bo_reference(&brw->wm.surf_bo[i], NULL);
bo_reference(&brw->wm.sampler_bo, NULL);