diff options
author | Chris Forbes <[email protected]> | 2013-11-09 22:26:08 +1300 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2013-11-10 10:20:02 +1300 |
commit | d257350949440539cb4c3c20349da7f1d5afb693 (patch) | |
tree | f8153284652f139cac37d89f7bfb6814dfe833d3 /src/glsl/opt_cse.cpp | |
parent | bd4596efac2b783b789392a222da909efcd0fd3b (diff) |
glsl: fix missing breaks in equals(ir_texture,..)
Signed-off-by: Chris Forbes <[email protected]>
Cc: "10.0" <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glsl/opt_cse.cpp')
-rw-r--r-- | src/glsl/opt_cse.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glsl/opt_cse.cpp b/src/glsl/opt_cse.cpp index c0fdb23e64c..c53b4c6e737 100644 --- a/src/glsl/opt_cse.cpp +++ b/src/glsl/opt_cse.cpp @@ -352,6 +352,7 @@ equals(ir_texture *a, ir_texture *b) if (!equals(a->lod_info.grad.dPdx, b->lod_info.grad.dPdx) || !equals(a->lod_info.grad.dPdy, b->lod_info.grad.dPdy)) return false; + break; case ir_txf_ms: if (!equals(a->lod_info.sample_index, b->lod_info.sample_index)) return false; @@ -359,6 +360,7 @@ equals(ir_texture *a, ir_texture *b) case ir_tg4: if (!equals(a->lod_info.component, b->lod_info.component)) return false; + break; default: assert(!"Unrecognized texture op"); } |