draw: revert using correct order for prim decomposition.

This reverts db3dfcfe90.
The commit was correct but we've got some precision problems later in
llvmpipe (or possibly in draw clip) due to the vertices coming in in
different order, causing some internal test failures. So revert for now.
(Will only affect drivers which actually support constant-interpolated
attributes and not just flatshading.)
This commit is contained in:
Roland Scheidegger
2014-12-17 20:16:07 +01:00
parent bc18b48924
commit f97b731c82
@@ -3,6 +3,8 @@
const boolean quads_flatshade_last = \
draw->quads_always_flatshade_last; \
const boolean last_vertex_last = \
!draw->rasterizer->flatshade_first;
!(draw->rasterizer->flatshade && \
draw->rasterizer->flatshade_first);
/* FIXME: the draw->rasterizer->flatshade part is really wrong */
#include "draw_decompose_tmp.h"