summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_pt_emit.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-05-26 18:29:47 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-05-26 18:29:47 +0100
commit529762d5df6d9427f9fa0927e38b9886e412a6bc (patch)
tree75ffef6c22ddf9e0d526f657044a0faf816be0ad /src/gallium/auxiliary/draw/draw_pt_emit.c
parent351eca365c0ba488000c3826d5093de6170381e4 (diff)
draw: add missing break
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pt_emit.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_pt_emit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_emit.c b/src/gallium/auxiliary/draw/draw_pt_emit.c
index 22a83ec78f..e21af3d287 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;