From: Keith Whitwell Date: Mon, 26 May 2008 17:29:47 +0000 (+0100) Subject: draw: add missing break X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=529762d5df6d9427f9fa0927e38b9886e412a6bc;p=mesa.git draw: add missing break --- diff --git a/src/gallium/auxiliary/draw/draw_pt_emit.c b/src/gallium/auxiliary/draw/draw_pt_emit.c index 22a83ec78f8..e21af3d2877 100644 --- a/src/gallium/auxiliary/draw/draw_pt_emit.c +++ b/src/gallium/auxiliary/draw/draw_pt_emit.c @@ -100,6 +100,7 @@ void draw_pt_emit_prepare( struct pt_emit *emit, case EMIT_4UB: output_format = PIPE_FORMAT_B8G8R8A8_UNORM; emit_sz = 4 * sizeof(ubyte); + break; default: assert(0); output_format = PIPE_FORMAT_NONE;