Mesa (master): i965: Silence unused parameter warning

Ian Romanick idr at kemper.freedesktop.org
Mon Mar 9 21:07:41 UTC 2015


Module: Mesa
Branch: master
Commit: 78a211cee5f3f5fc101e3e68b5b1c8258837a6c3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=78a211cee5f3f5fc101e3e68b5b1c8258837a6c3

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Fri Feb 27 18:42:03 2015 -0800

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 <ian.d.romanick at intel.com>
Reviewed-by: Carl Worth <cworth at cworth.org>
Reviewed-by: Jordan Justen <jordan.l.justen at intel.com>

---

 src/mesa/drivers/dri/i965/brw_performance_monitor.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/src/mesa/drivers/dri/i965/brw_performance_monitor.c b/src/mesa/drivers/dri/i965/brw_performance_monitor.c
index 297150f..6c31d4c 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));
 }
 




More information about the mesa-commit mailing list