From: Brian Paul Date: Sat, 19 Nov 2011 00:39:01 +0000 (-0700) Subject: mesa: make slow_read_rgba_pixels() a void function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=72fb25cefbf58d477d99ce2c986a703f1178cf59;p=mesa.git mesa: make slow_read_rgba_pixels() a void function The boolean return value was ignored by the caller. Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/main/readpix.c b/src/mesa/main/readpix.c index 86b87534d31..aa893deeda7 100644 --- a/src/mesa/main/readpix.c +++ b/src/mesa/main/readpix.c @@ -224,7 +224,7 @@ fast_read_rgba_pixels_memcpy( struct gl_context *ctx, return GL_TRUE; } -static GLboolean +static void slow_read_rgba_pixels( struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, @@ -263,8 +263,6 @@ slow_read_rgba_pixels( struct gl_context *ctx, } ctx->Driver.UnmapRenderbuffer(ctx, rb); - - return GL_TRUE; } /*