aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2011-08-25 16:59:02 -0700
committerIan Romanick <[email protected]>2011-09-09 12:01:52 -0700
commit8b3096cfa4af6bc86a852bf1c773acb097a2789f (patch)
tree49c788aad26236ea73dbce9d0ffa86012fdec190
parent076d609aa3336ce850fd2729faf31cc57a5fb090 (diff)
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.
-rw-r--r--src/mesa/swrast/s_spantemp.h7
1 files changed, 7 insertions, 0 deletions
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;
}