diff options
author | Christian Koenig <[email protected]> | 2012-09-20 17:20:51 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2012-09-26 11:05:35 +0200 |
commit | 421eeff4636ecc819c118b67136b97f0a922e6fd (patch) | |
tree | 176509bc5eda28a8b90454ded46b544c3a5d1422 /src/gallium/drivers/radeonsi/si_state.h | |
parent | 7773c7109c9a3b31767fab012183f64b932264a7 (diff) |
radeonsi: move draw cmds to si_commands.c
Signed-off-by: Christian Koenig <[email protected]>
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h index 5e945ec25e0..4231c841b93 100644 --- a/src/gallium/drivers/radeonsi/si_state.h +++ b/src/gallium/drivers/radeonsi/si_state.h @@ -160,6 +160,11 @@ void si_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *dinfo); /* si_commands.c */ void si_cmd_context_control(struct si_pm4_state *pm4); +void si_cmd_draw_index_2(struct si_pm4_state *pm4, uint32_t max_size, + uint64_t index_base, uint32_t index_count, + uint32_t initiator, bool predicate); +void si_cmd_draw_index_auto(struct si_pm4_state *pm4, uint32_t count, + uint32_t initiator, bool predicate); void si_cmd_surface_sync(struct si_pm4_state *pm4, uint32_t cp_coher_cntl); #endif |