From 0c76729f39bad667a4ee08ed76b51870ed9f6912 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 7 Sep 2011 12:39:47 -0700 Subject: [PATCH] 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 --- src/mesa/main/uniforms.c | 6 ++++++ 1 file changed, 6 insertions(+) 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); */ -- 2.11.0