radeonsi: remove r600_pipe_common::set_atom_dirty

Acked-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
Marek Olšák
2018-04-01 13:30:02 -04:00
parent 5c125ab1ba
commit 0447e8e59e
3 changed files with 1 additions and 5 deletions
@@ -516,9 +516,6 @@ struct r600_common_context {
/* This ensures there is enough space in the command stream. */
void (*need_gfx_cs_space)(struct pipe_context *ctx, unsigned num_dw,
bool include_draw_vbo);
void (*set_atom_dirty)(struct r600_common_context *ctx,
struct r600_atom *atom, bool dirty);
};
/* r600_buffer_common.c */
+1 -1
View File
@@ -1832,7 +1832,7 @@ static void r600_render_condition(struct pipe_context *ctx,
rctx->render_cond_invert = condition;
rctx->render_cond_mode = mode;
rctx->set_atom_dirty(rctx, atom, query != NULL);
si_set_atom_dirty((struct si_context*)rctx, atom, query != NULL);
}
void si_suspend_queries(struct r600_common_context *ctx)
-1
View File
@@ -259,7 +259,6 @@ static struct pipe_context *si_create_context(struct pipe_screen *screen,
sctx->b.b.emit_string_marker = si_emit_string_marker;
sctx->b.b.set_debug_callback = si_set_debug_callback;
sctx->b.b.set_log_context = si_set_log_context;
sctx->b.set_atom_dirty = (void *)si_set_atom_dirty;
sctx->screen = sscreen; /* Easy accessing of screen/winsys. */
sctx->is_debug = (flags & PIPE_CONTEXT_DEBUG) != 0;