diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-04-02 12:05:55 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-04-02 12:05:55 +0100 |
commit | add46fbc8cc04d3bce303815541a7bc5d0b33953 (patch) | |
tree | 0871403aa2095b35e67d3f38487a11a1956c6fbd | |
parent | ae3c91e98ce3355bca22738440f8ba313b3b8b23 (diff) |
draw: add missing break statement
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pt_fetch_emit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c b/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c index 9339cf1f88..f863a46d9c 100644 --- a/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c +++ b/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c @@ -281,6 +281,7 @@ static void fetch_emit_prepare( struct draw_pt_middle_end *middle, feme->fetch[i].pitch = 0; feme->fetch[i].fetch = fetch_R32_FLOAT; feme->fetch[i].emit = emit_R32_FLOAT; + break; default: assert(0); feme->fetch[i].emit = NULL; |