mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 16:30:10 +01:00
ilo: Add missing break statement in aos_tex TGSI_OPCODE_TEX2 case.
Fixes "Missing break in switch" defect reported by Coverity. Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: Chia-I Wu <olvaffe@gmail.com>
This commit is contained in:
parent
c9cf83b587
commit
4ba9c9c5be
1 changed files with 1 additions and 0 deletions
|
|
@ -357,6 +357,7 @@ aos_tex(struct toy_compiler *tc,
|
|||
break;
|
||||
case TGSI_OPCODE_TEX2:
|
||||
opcode = TOY_OPCODE_TGSI_TEX2;
|
||||
break;
|
||||
case TGSI_OPCODE_TXB2:
|
||||
opcode = TOY_OPCODE_TGSI_TXB2;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue