projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97a0fe8
)
mesa: Silence several 'warning: unused parameter' in _mesa_GetnUniformdvARB
author
Ian Romanick
<ian.d.romanick@intel.com>
Wed, 7 Sep 2011 19:39:47 +0000
(12:39 -0700)
committer
Ian 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
patch
|
blob
|
history
diff --git
a/src/mesa/main/uniforms.c
b/src/mesa/main/uniforms.c
index 7bdeec743d61ce6f2615aa07dbea5a2a1404deea..7252c099abf955697e85ef69c5abd719085feab8 100644
(file)
--- 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);
*/