From: Nanley Chery Date: Sat, 6 Feb 2016 00:25:28 +0000 (-0800) Subject: mesa/readpix: Dedent former _mesa_readpixels() if block X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c624241ef47c3a6ea2d1177969328bd4547e45a2;p=mesa.git mesa/readpix: Dedent former _mesa_readpixels() if block Formatting patch split out for easy reviewing. Signed-off-by: Nanley Chery Reviewed-by: Ian Romanick Reviewed-by: Brian Paul --- diff --git a/src/mesa/main/readpix.c b/src/mesa/main/readpix.c index 56e9d60bb11..470182ab23d 100644 --- a/src/mesa/main/readpix.c +++ b/src/mesa/main/readpix.c @@ -861,38 +861,38 @@ _mesa_readpixels(struct gl_context *ctx, if (ctx->NewState) _mesa_update_state(ctx); - pixels = _mesa_map_pbo_dest(ctx, packing, pixels); - - if (pixels) { - /* Try memcpy first. */ - if (readpixels_memcpy(ctx, x, y, width, height, format, type, - pixels, packing)) { - _mesa_unmap_pbo_dest(ctx, packing); - return; - } - - /* Otherwise take the slow path. */ - switch (format) { - case GL_STENCIL_INDEX: - read_stencil_pixels(ctx, x, y, width, height, type, pixels, - packing); - break; - case GL_DEPTH_COMPONENT: - read_depth_pixels(ctx, x, y, width, height, type, pixels, - packing); - break; - case GL_DEPTH_STENCIL_EXT: - read_depth_stencil_pixels(ctx, x, y, width, height, type, pixels, - packing); - break; - default: - /* all other formats should be color formats */ - read_rgba_pixels(ctx, x, y, width, height, format, type, pixels, - packing); - } + pixels = _mesa_map_pbo_dest(ctx, packing, pixels); + if (pixels) { + /* Try memcpy first. */ + if (readpixels_memcpy(ctx, x, y, width, height, format, type, + pixels, packing)) { _mesa_unmap_pbo_dest(ctx, packing); + return; + } + + /* Otherwise take the slow path. */ + switch (format) { + case GL_STENCIL_INDEX: + read_stencil_pixels(ctx, x, y, width, height, type, pixels, + packing); + break; + case GL_DEPTH_COMPONENT: + read_depth_pixels(ctx, x, y, width, height, type, pixels, + packing); + break; + case GL_DEPTH_STENCIL_EXT: + read_depth_stencil_pixels(ctx, x, y, width, height, type, pixels, + packing); + break; + default: + /* all other formats should be color formats */ + read_rgba_pixels(ctx, x, y, width, height, format, type, pixels, + packing); } + + _mesa_unmap_pbo_dest(ctx, packing); + } }