diff options
author | Marek Olšák <[email protected]> | 2015-08-30 03:56:13 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-09-01 21:51:15 +0200 |
commit | 28b34b474e330be881d15a34859811e9f5e36eb5 (patch) | |
tree | ef9944023a535af27a5522decd65e9913da9371b /src/gallium/drivers/radeonsi/si_state.c | |
parent | aad43f0768edc0711d5f54ea79b052fb4f1d3321 (diff) |
radeonsi: don't send IB dword usage to si_need_cs_space
Reviewed-by: Alex Deucher <[email protected]>
Acked-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index 183ae4c5bfd..9019b3596e6 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -3039,7 +3039,7 @@ static void *si_create_blend_custom(struct si_context *sctx, unsigned mode) static void si_need_gfx_cs_space(struct pipe_context *ctx, unsigned num_dw, bool include_draw_vbo) { - si_need_cs_space((struct si_context*)ctx, num_dw, include_draw_vbo); + si_need_cs_space((struct si_context*)ctx); } static void si_init_config(struct si_context *sctx); |