diff options
author | Ian Romanick <[email protected]> | 2017-11-01 16:25:37 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2017-11-08 18:37:29 -0800 |
commit | 2c7657f62cd717ecb38487620e56c67b3c785809 (patch) | |
tree | 157544d8806dbf042a77a0f0fd91aee62aba1145 /src | |
parent | 6bec8bcd79ed8bb3e3d5b56891df0fc5bf5e8cd3 (diff) |
glsl: Silence unused parameter warning
glsl/lower_shared_reference.cpp: In member function ‘virtual void
{anonymous}::lower_shared_reference_visitor::insert_buffer_access(void*,
ir_dereference*, const glsl_type*, ir_rvalue*, unsigned int, int)’:
glsl/lower_shared_reference.cpp:244:58: warning: unused parameter
‘channel’ [-Wunused-parameter]
int channel)
^~~~~~~
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/glsl/lower_shared_reference.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/lower_shared_reference.cpp b/src/compiler/glsl/lower_shared_reference.cpp index a1b3f7df47e..86afc5de924 100644 --- a/src/compiler/glsl/lower_shared_reference.cpp +++ b/src/compiler/glsl/lower_shared_reference.cpp @@ -241,7 +241,7 @@ lower_shared_reference_visitor::insert_buffer_access(void *mem_ctx, const glsl_type *type, ir_rvalue *offset, unsigned mask, - int channel) + int /* channel */) { if (buffer_access_type == shared_store_access) { ir_call *store = shared_store(mem_ctx, deref, offset, mask); |