diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-10 17:01:11 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-01-10 17:01:11 -0700 |
commit | cac8892ddb24ddb92b6f367689712925ee6c2d86 (patch) | |
tree | 1882b50046036a3602987a1b8fdfa68d44a2c34b /src/mesa/pipe/i915simple | |
parent | 763e30748e99064fafeb0d9b34de8d732732689c (diff) |
Additional parameters to vbuf_render->draw()
Pass complete information about vertex/index buffer location, size, etc.
Diffstat (limited to 'src/mesa/pipe/i915simple')
-rw-r--r-- | src/mesa/pipe/i915simple/i915_prim_vbuf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/pipe/i915simple/i915_prim_vbuf.c b/src/mesa/pipe/i915simple/i915_prim_vbuf.c index 571ad40595..bdcc027ed7 100644 --- a/src/mesa/pipe/i915simple/i915_prim_vbuf.c +++ b/src/mesa/pipe/i915simple/i915_prim_vbuf.c @@ -136,8 +136,12 @@ i915_vbuf_render_set_primitive( struct vbuf_render *render, static void i915_vbuf_render_draw( struct vbuf_render *render, + uint prim, const ushort *indices, - unsigned nr_indices ) + uint nr_indices, + const void *vertices, + uint nr_vertices, + uint vertex_bytes) { struct i915_vbuf_render *i915_render = i915_vbuf_render(render); struct i915_context *i915 = i915_render->i915; |