From: Ian Romanick Date: Fri, 26 Aug 2011 17:24:36 +0000 (-0700) Subject: intel: Silence several "warning: unused parameter" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ed3040f3baa468a0e16ea1ae2e5202c18d838c8f;p=mesa.git 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. --- diff --git a/src/mesa/drivers/dri/intel/intel_tex.c b/src/mesa/drivers/dri/intel/intel_tex.c index 4faa01a8627..f97952348d4 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);