Module: Mesa Branch: master Commit: b86e079ab7854a97a3bb2ce2714ca1550a6ad130 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b86e079ab7854a97a3bb2ce2714ca1550a6ad130
Author: Chad Versace <[email protected]> Date: Tue May 23 16:35:34 2017 -0700 i965: Move an 'i' declaration into its 'for' loop In intel_update_dri2_buffers(). Trivial cleanup. Reviewed-by: Tapani Pälli <[email protected]> --- src/mesa/drivers/dri/i965/brw_context.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index adae921e57..825912b7b5 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -1410,7 +1410,7 @@ intel_update_dri2_buffers(struct brw_context *brw, __DRIdrawable *drawable) struct gl_framebuffer *fb = drawable->driverPrivate; struct intel_renderbuffer *rb; __DRIbuffer *buffers = NULL; - int i, count; + int count; const char *region_name; /* Set this up front, so that in case our buffers get invalidated @@ -1426,7 +1426,7 @@ intel_update_dri2_buffers(struct brw_context *brw, __DRIdrawable *drawable) if (buffers == NULL) return; - for (i = 0; i < count; i++) { + for (int i = 0; i < count; i++) { switch (buffers[i].attachment) { case __DRI_BUFFER_FRONT_LEFT: rb = intel_get_renderbuffer(fb, BUFFER_FRONT_LEFT); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
