diff options
author | Keith Whitwell <[email protected]> | 2008-03-10 19:49:15 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-03-10 23:31:50 +0000 |
commit | 297b3be25a7f097fb9b1a79e332acddc12dcc3fe (patch) | |
tree | a44e37a8724483317f9858e9fcdd387a738c18e6 /src/gallium/auxiliary/draw/draw_vbuf.h | |
parent | d08cd68d3f5456b69ad504ede2b090c0bb6474db (diff) |
draw: placeholder/prototype code for a passthrough draw path
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vbuf.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vbuf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vbuf.h b/src/gallium/auxiliary/draw/draw_vbuf.h index cfd2b9820c1..5e7de905c16 100644 --- a/src/gallium/auxiliary/draw/draw_vbuf.h +++ b/src/gallium/auxiliary/draw/draw_vbuf.h @@ -85,6 +85,12 @@ struct vbuf_render { const ushort *indices, uint nr_indices ); + /* Draw Arrays path too. + */ + void (*draw_arrays)( struct vbuf_render *, + unsigned start, + uint nr ); + /** * Called when vbuf is done with this set of vertices: */ |