diff options
author | Brian Paul <[email protected]> | 2009-03-12 17:13:00 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-03-12 18:25:09 -0600 |
commit | 6b9c1446b35cb33d73bd8ea7aeed8d219d0a9989 (patch) | |
tree | ef120e492c88e11cbe46775cbdddf98ddcc7465a /src/mesa/drivers/dri/i915/i830_vtbl.c | |
parent | 6c5804172a4ab3b960be6e64869a9376ec18010d (diff) |
i915: move declarations before code
Diffstat (limited to 'src/mesa/drivers/dri/i915/i830_vtbl.c')
-rw-r--r-- | src/mesa/drivers/dri/i915/i830_vtbl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i915/i830_vtbl.c b/src/mesa/drivers/dri/i915/i830_vtbl.c index 8fc8aa5f900..1a949210789 100644 --- a/src/mesa/drivers/dri/i915/i830_vtbl.c +++ b/src/mesa/drivers/dri/i915/i830_vtbl.c @@ -422,10 +422,10 @@ i830_emit_state(struct intel_context *intel) struct i830_hw_state *state = i830->current; int i, count; GLuint dirty; - GET_CURRENT_CONTEXT(ctx); - BATCH_LOCALS; dri_bo *aper_array[3 + I830_TEX_UNITS]; int aper_count; + GET_CURRENT_CONTEXT(ctx); + BATCH_LOCALS; /* We don't hold the lock at this point, so want to make sure that * there won't be a buffer wrap between the state emits and the primitive |