diff options
author | Brian Paul <[email protected]> | 2014-01-22 10:03:15 -0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-01-23 08:13:14 -0700 |
commit | 1f2007429e0874539c8360482f0720d78963c69c (patch) | |
tree | 62a5c47fd7ec69925c3dc47f84f9623327681480 | |
parent | 5306ee736ebcce0c1cf899589c2344acdedc2162 (diff) |
glsl: silence a couple warnings in find_active_atomic_counters()
Silence unitialized variable 'id' warning. Silence unused 'found' warning.
Only seen in release builds.
Reviewed-by: Marek Olšák <[email protected]>
-rw-r--r-- | src/glsl/link_atomics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glsl/link_atomics.cpp b/src/glsl/link_atomics.cpp index db9c5396562..d92cdb11709 100644 --- a/src/glsl/link_atomics.cpp +++ b/src/glsl/link_atomics.cpp @@ -105,9 +105,10 @@ namespace { ir_variable *var = ((ir_instruction *)node)->as_variable(); if (var && var->type->contains_atomic()) { - unsigned id; + unsigned id = 0; bool found = prog->UniformHash->get(id, var->name); assert(found); + (void) found; active_atomic_buffer *buf = &buffers[var->data.binding]; /* If this is the first time the buffer is used, increment |