summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_pt_decompose.h
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-08-06 16:57:04 +0800
committerChia-I Wu <olv@lunarg.com>2010-08-06 17:14:21 +0800
commitd38afcd2f286e924e0f9b7f484712ac19e3f98fc (patch)
tree87060499c19e20eb0de4bcd7913781159781a2d6 /src/gallium/auxiliary/draw/draw_pt_decompose.h
parentbec87456ed80e7561f7ac73b01e648896971a381 (diff)
draw: Avoid mixed declarations and code.
Do not expand LOCAL_VARS to void expression. Otherwise, declarations and code will be mixed when more variables are declared in FUNC_ENTER. This fixes fdo bug #29416.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pt_decompose.h')
-rw-r--r--src/gallium/auxiliary/draw/draw_pt_decompose.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_decompose.h b/src/gallium/auxiliary/draw/draw_pt_decompose.h
index e7ae9c4449..3127aad731 100644
--- a/src/gallium/auxiliary/draw/draw_pt_decompose.h
+++ b/src/gallium/auxiliary/draw/draw_pt_decompose.h
@@ -2,6 +2,6 @@
char *verts = (char *) vertices; \
const boolean last_vertex_last = \
!(draw->rasterizer->flatshade && \
- draw->rasterizer->flatshade_first)
+ draw->rasterizer->flatshade_first);
#include "draw_decompose_tmp.h"