diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-03-29 14:41:03 +0100 |
---|---|---|
committer | Michal Krol <michal@tungstengraphics.com> | 2008-03-29 14:41:03 +0100 |
commit | a52c0416d1f2105960b4646e2e268aed26814689 (patch) | |
tree | c49a0e4bce225c3126c6acf3ea3205aed99b1d93 /src/gallium/drivers/cell/ppu/cell_state.h | |
parent | f10016b9a0639d7bc814c7b92a30d5b5b2cba5ad (diff) |
gallium: Set vertex state/buffers en-mass.
Diffstat (limited to 'src/gallium/drivers/cell/ppu/cell_state.h')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_state.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_state.h b/src/gallium/drivers/cell/ppu/cell_state.h index 31ce505e21..82580ea35a 100644 --- a/src/gallium/drivers/cell/ppu/cell_state.h +++ b/src/gallium/drivers/cell/ppu/cell_state.h @@ -48,13 +48,13 @@ #define CELL_NEW_VERTEX_INFO 0x8000 -void cell_set_vertex_element(struct pipe_context *, - unsigned index, - const struct pipe_vertex_element *); +void cell_set_vertex_elements(struct pipe_context *, + unsigned count, + const struct pipe_vertex_element *); -void cell_set_vertex_buffer(struct pipe_context *, - unsigned index, - const struct pipe_vertex_buffer *); +void cell_set_vertex_buffers(struct pipe_context *, + unsigned count, + const struct pipe_vertex_buffer *); void cell_update_derived( struct cell_context *softpipe ); |