mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 05:40:13 +01:00
draw: Replace varray by vsplit.
vsplit is a superset of varray. It sets the split flags comparing to varray.
This commit is contained in:
parent
04bc530dbd
commit
5b6bf799e6
2 changed files with 9 additions and 8 deletions
|
|
@ -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];
|
||||
|
|
|
|||
|
|
@ -111,8 +111,9 @@ draw_pt_arrays(struct draw_context *draw,
|
|||
*/
|
||||
if (draw->pt.user.elts || (opt & PT_PIPELINE)) {
|
||||
frontend = draw->pt.front.vcache;
|
||||
} else {
|
||||
frontend = draw->pt.front.varray;
|
||||
}
|
||||
else {
|
||||
frontend = draw->pt.front.vsplit;
|
||||
}
|
||||
|
||||
frontend->prepare( frontend, prim, middle, opt );
|
||||
|
|
@ -134,8 +135,8 @@ boolean draw_pt_init( struct draw_context *draw )
|
|||
if (!draw->pt.front.vcache)
|
||||
return FALSE;
|
||||
|
||||
draw->pt.front.varray = draw_pt_varray(draw);
|
||||
if (!draw->pt.front.varray)
|
||||
draw->pt.front.vsplit = draw_pt_vsplit(draw);
|
||||
if (!draw->pt.front.vsplit)
|
||||
return FALSE;
|
||||
|
||||
draw->pt.middle.fetch_emit = draw_pt_fetch_emit( draw );
|
||||
|
|
@ -186,9 +187,9 @@ void draw_pt_destroy( struct draw_context *draw )
|
|||
draw->pt.front.vcache = NULL;
|
||||
}
|
||||
|
||||
if (draw->pt.front.varray) {
|
||||
draw->pt.front.varray->destroy( draw->pt.front.varray );
|
||||
draw->pt.front.varray = NULL;
|
||||
if (draw->pt.front.vsplit) {
|
||||
draw->pt.front.vsplit->destroy( draw->pt.front.vsplit );
|
||||
draw->pt.front.vsplit = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue