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:
Vinson Lee 2013-05-05 12:51:42 -07:00 committed by Chia-I Wu
parent c9cf83b587
commit 4ba9c9c5be

View file

@ -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;