From: Ian Romanick Date: Thu, 25 Aug 2011 23:59:02 +0000 (-0700) Subject: swrast: Silence many "warning: unused parameter ‘ctx’" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b3096cfa4af6bc86a852bf1c773acb097a2789f;p=mesa.git swrast: Silence many "warning: unused parameter ‘ctx’" Not all drivers use ctx in LOCAL_VARS, so '(void) ctx;' is added to all the function templates to make GCC happy. --- 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; }