diff options
author | Chia-I Wu <[email protected]> | 2010-08-07 15:12:14 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-08-16 20:46:28 +0800 |
commit | 5b6bf799e637e9020af3a4bebe514b53d7c38eca (patch) | |
tree | c5f8a27b10a124152f11c868e0443d0fa1c84a7d /src/gallium/auxiliary/draw/draw_private.h | |
parent | 04bc530dbdbe5d004219c9100e35f5d56cfedd80 (diff) |
draw: Replace varray by vsplit.
vsplit is a superset of varray. It sets the split flags comparing to
varray.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_private.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_private.h b/src/gallium/auxiliary/draw/draw_private.h index 826f5dc98cb..18b632e3d95 100644 --- a/src/gallium/auxiliary/draw/draw_private.h +++ b/src/gallium/auxiliary/draw/draw_private.h @@ -141,7 +141,7 @@ struct draw_context struct { struct draw_pt_front_end *vcache; - struct draw_pt_front_end *varray; + struct draw_pt_front_end *vsplit; } front; struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS]; |