mesa: Silence several 'warning: unused parameter' in _mesa_GetnUniformdvARB
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 7 Sep 2011 19:39:47 +0000 (12:39 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Fri, 7 Oct 2011 23:39:51 +0000 (16:39 -0700)
This function isn't implemented yet, so none of its parameters are
used yet.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/main/uniforms.c

index 7bdeec743d61ce6f2615aa07dbea5a2a1404deea..7252c099abf955697e85ef69c5abd719085feab8 100644 (file)
@@ -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);
    */