diff options
author | Ian Romanick <[email protected]> | 2015-02-27 18:42:03 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2015-03-09 14:07:14 -0700 |
commit | 78a211cee5f3f5fc101e3e68b5b1c8258837a6c3 (patch) | |
tree | c51e2b5d6f6e4234aa4b6508c855209162c5523c /src/mesa | |
parent | 3a6a732c43e6ba6d48575796907f1ed144c7722c (diff) |
i965: Silence unused parameter warning
All dd functions take a gl_context as the first parameter. Instead of
removing it, just silence the warning.
brw_performance_monitor.c: In function 'brw_new_perf_monitor':
brw_performance_monitor.c:1354:41: warning: unused parameter 'ctx' [-Wunused-parameter]
brw_new_perf_monitor(struct gl_context *ctx)
^
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Carl Worth <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_performance_monitor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_performance_monitor.c b/src/mesa/drivers/dri/i965/brw_performance_monitor.c index 297150fd398..6c31d4c2e24 100644 --- a/src/mesa/drivers/dri/i965/brw_performance_monitor.c +++ b/src/mesa/drivers/dri/i965/brw_performance_monitor.c @@ -1353,6 +1353,7 @@ brw_get_perf_monitor_result(struct gl_context *ctx, static struct gl_perf_monitor_object * brw_new_perf_monitor(struct gl_context *ctx) { + (void) ctx; return calloc(1, sizeof(struct brw_perf_monitor_object)); } |