Mesa (master): intel: Silence several "warning: unused parameter"

Ian Romanick idr at kemper.freedesktop.org
Fri Sep 9 19:20:29 UTC 2011


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

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Fri Aug 26 10:24:36 2011 -0700

intel: Silence several "warning: unused parameter"

Trivially silence the compiler by adding '(void) foo;' for each unused
parameter.  These parameters could not be removed.  They are part of
interface used elsewhere in Mesa, and some of the other customers
actually use these parameters.

---

 src/mesa/drivers/dri/intel/intel_tex.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_tex.c b/src/mesa/drivers/dri/intel/intel_tex.c
index 4faa01a..f979523 100644
--- a/src/mesa/drivers/dri/intel/intel_tex.c
+++ b/src/mesa/drivers/dri/intel/intel_tex.c
@@ -24,6 +24,8 @@ intelNewTextureObject(struct gl_context * ctx, GLuint name, GLenum target)
 {
    struct intel_texture_object *obj = CALLOC_STRUCT(intel_texture_object);
 
+   (void) ctx;
+
    DBG("%s\n", __FUNCTION__);
    _mesa_initialize_texture_object(&obj->base, name, target);
 




More information about the mesa-commit mailing list