mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
st/mesa: silence warning about unhandled enum in switch statement
This commit is contained in:
parent
d133592619
commit
bde5b626c2
1 changed files with 3 additions and 0 deletions
|
|
@ -2788,6 +2788,9 @@ glsl_to_tgsi_visitor::visit(ir_texture *ir)
|
|||
case ir_lod:
|
||||
assert(!"Unexpected ir_lod opcode");
|
||||
break;
|
||||
case ir_tg4:
|
||||
assert(!"Unexpected ir_tg4 opcode");
|
||||
break;
|
||||
}
|
||||
|
||||
if (ir->projector) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue