From: Ian Romanick Date: Wed, 7 Sep 2011 19:39:47 +0000 (-0700) Subject: mesa: Silence several 'warning: unused parameter' in _mesa_GetnUniformdvARB X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c76729f39bad667a4ee08ed76b51870ed9f6912;p=mesa.git mesa: Silence several 'warning: unused parameter' in _mesa_GetnUniformdvARB This function isn't implemented yet, so none of its parameters are used yet. Signed-off-by: Ian Romanick Reviewed-by: Brian Paul Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/main/uniforms.c b/src/mesa/main/uniforms.c index 7bdeec743d6..7252c099abf 100644 --- a/src/mesa/main/uniforms.c +++ b/src/mesa/main/uniforms.c @@ -1443,6 +1443,12 @@ _mesa_GetnUniformdvARB(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble *params) { GET_CURRENT_CONTEXT(ctx); + + (void) program; + (void) location; + (void) bufSize; + (void) params; + /* get_uniform(ctx, program, location, bufSize, GL_DOUBLE, params); */