summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/uniform_query.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2014-10-20 14:54:44 -0700
committerIan Romanick <ian.d.romanick@intel.com>2014-10-24 19:54:39 -0700
commit66d950464c40ea53b8a5a87241c9ade0116e1f91 (patch)
treeedd5c0172a9f2569c17634b34f4455a278025041 /src/mesa/main/uniform_query.cpp
parent99e8a3973f71d161eb4e9f51b038a5799945d2db (diff)
downloadexternal_mesa3d-66d950464c40ea53b8a5a87241c9ade0116e1f91.zip
external_mesa3d-66d950464c40ea53b8a5a87241c9ade0116e1f91.tar.gz
external_mesa3d-66d950464c40ea53b8a5a87241c9ade0116e1f91.tar.bz2
mesa: Silence unused parameter warning in _mesa_init_shader_program
Just remove the parameter. Silences: ../../src/mesa/main/uniform_query.cpp:1062:1: warning: unused parameter 'ctx' [-Wunused-parameter] Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/mesa/main/uniform_query.cpp')
-rw-r--r--src/mesa/main/uniform_query.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/uniform_query.cpp b/src/mesa/main/uniform_query.cpp
index db97d3d..fcb14c4 100644
--- a/src/mesa/main/uniform_query.cpp
+++ b/src/mesa/main/uniform_query.cpp
@@ -973,8 +973,7 @@ _mesa_uniform_matrix(struct gl_context *ctx, struct gl_shader_program *shProg,
* array offset in *offset, or GL_INVALID_INDEX (-1).
*/
extern "C" unsigned
-_mesa_get_uniform_location(struct gl_context *ctx,
- struct gl_shader_program *shProg,
+_mesa_get_uniform_location(struct gl_shader_program *shProg,
const GLchar *name,
unsigned *out_offset)
{