diff options
author | Chia-I Wu <[email protected]> | 2010-08-07 20:44:02 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-08-16 20:46:28 +0800 |
commit | 5a085c623faebf957be3fae2f82dc89ef6214585 (patch) | |
tree | e391dd2836d5e7c365ea5e116f5f887b3228aea9 /src/gallium/auxiliary/draw/draw_private.h | |
parent | 5b6bf799e637e9020af3a4bebe514b53d7c38eca (diff) |
draw: Replace vcache by vsplit.
vcache decomposes primitives while vsplit splits primitives. Splitting
is generally easier to do and is faster. More importantly, vcache
depends on flatshade_first to decompose. The outputs may have incorrect
vertex order which is significant to GS.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_private.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_private.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_private.h b/src/gallium/auxiliary/draw/draw_private.h index 18b632e3d95..94b688f891a 100644 --- a/src/gallium/auxiliary/draw/draw_private.h +++ b/src/gallium/auxiliary/draw/draw_private.h @@ -140,7 +140,6 @@ struct draw_context } middle; struct { - struct draw_pt_front_end *vcache; struct draw_pt_front_end *vsplit; } front; |