diff options
author | Chris Forbes <[email protected]> | 2013-10-05 23:18:39 +1300 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2013-10-05 23:18:45 +1300 |
commit | 84e1a396ecac80ea8ae355f933569e4533e9749a (patch) | |
tree | a2076441d72d70cfa9ddcd0d58b05a73d25dfeb3 | |
parent | 2beb60c4e7b95d4a502e92e441f42ab66a57d3fd (diff) |
i965/vs: add missing break between ir_query_levels and ir_tg4 cases
Signed-off-by: Chris Forbes <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp index 1112b23cc3b..224524e9499 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp @@ -2236,6 +2236,7 @@ vec4_visitor::visit(ir_texture *ir) break; case ir_tg4: inst = new(mem_ctx) vec4_instruction(this, SHADER_OPCODE_TG4); + break; case ir_query_levels: inst = new(mem_ctx) vec4_instruction(this, SHADER_OPCODE_TXS); break; |