diff options
author | Ian Romanick <[email protected]> | 2011-09-07 12:39:47 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-10-07 16:39:51 -0700 |
commit | 0c76729f39bad667a4ee08ed76b51870ed9f6912 (patch) | |
tree | fc5d7ec73d2dda93574a8dd1c3abbe962bcecb77 /src | |
parent | 97a0fe8e93cc5340888ae9245b1373d195eff767 (diff) |
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 <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/uniforms.c | 6 |
1 files changed, 6 insertions, 0 deletions
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); */ |