summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2018-04-01 13:32:47 -0400
committerMarek Olšák <[email protected]>2018-04-05 15:34:58 -0400
commit54f28359b5dda8f2d2738a1c1654c94cc7beeef0 (patch)
treea4948711455063dbdfc27bfe9c0d49854c8a029a /src/gallium/drivers/radeonsi
parent0447e8e59e9cbce196138d46dc0be07b7ed392a0 (diff)
radeonsi: remove r600_pipe_common::need_gfx_cs_space
Acked-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi')
-rw-r--r--src/gallium/drivers/radeonsi/si_state.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c
index cd64d3bc0fb..08ba5c0b7dc 100644
--- a/src/gallium/drivers/radeonsi/si_state.c
+++ b/src/gallium/drivers/radeonsi/si_state.c
@@ -4523,12 +4523,6 @@ static void *si_create_blend_custom(struct si_context *sctx, unsigned mode)
return si_create_blend_state_mode(&sctx->b.b, &blend, 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);
-}
-
static void si_init_config(struct si_context *sctx);
void si_init_state_functions(struct si_context *sctx)
@@ -4596,7 +4590,6 @@ void si_init_state_functions(struct si_context *sctx)
sctx->b.b.set_active_query_state = si_set_active_query_state;
sctx->b.set_occlusion_query_state = si_set_occlusion_query_state;
sctx->b.save_qbo_state = si_save_qbo_state;
- sctx->b.need_gfx_cs_space = si_need_gfx_cs_space;
sctx->b.b.draw_vbo = si_draw_vbo;