From 8b3096cfa4af6bc86a852bf1c773acb097a2789f Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Thu, 25 Aug 2011 16:59:02 -0700 Subject: [PATCH] =?utf8?q?swrast:=20Silence=20many=20"warning:=20unused=20?= =?utf8?q?parameter=20=E2=80=98ctx=E2=80=99"?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Not all drivers use ctx in LOCAL_VARS, so '(void) ctx;' is added to all the function templates to make GCC happy. --- src/mesa/swrast/s_spantemp.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/mesa/swrast/s_spantemp.h b/src/mesa/swrast/s_spantemp.h index 8a9485085ef..517c2eb3fbe 100644 --- a/src/mesa/swrast/s_spantemp.h +++ b/src/mesa/swrast/s_spantemp.h @@ -65,6 +65,7 @@ NAME(get_row)( struct gl_context *ctx, struct gl_renderbuffer *rb, INC_PIXEL_PTR(pixel); } (void) rb; + (void) ctx; } @@ -82,6 +83,7 @@ NAME(get_values)( struct gl_context *ctx, struct gl_renderbuffer *rb, FETCH_PIXEL(dest[i], pixel); } (void) rb; + (void) ctx; } @@ -111,6 +113,7 @@ NAME(put_row)( struct gl_context *ctx, struct gl_renderbuffer *rb, } } (void) rb; + (void) ctx; } @@ -136,6 +139,7 @@ NAME(put_row_rgb)( struct gl_context *ctx, struct gl_renderbuffer *rb, INC_PIXEL_PTR(pixel); } (void) rb; + (void) ctx; } @@ -165,6 +169,7 @@ NAME(put_mono_row)( struct gl_context *ctx, struct gl_renderbuffer *rb, } } (void) rb; + (void) ctx; } @@ -186,6 +191,7 @@ NAME(put_values)( struct gl_context *ctx, struct gl_renderbuffer *rb, } } (void) rb; + (void) ctx; } @@ -207,6 +213,7 @@ NAME(put_mono_values)( struct gl_context *ctx, struct gl_renderbuffer *rb, } } (void) rb; + (void) ctx; } -- 2.30.2