iris: Delete iris_resolve_conditional_render

This function has no more users.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7762>
This commit is contained in:
Nanley Chery 2020-11-24 14:17:49 -08:00 committed by Marge Bot
parent c3785c0c9d
commit 04ac3a6620
3 changed files with 0 additions and 28 deletions

View File

@ -627,11 +627,6 @@ struct iris_context {
struct iris_bo *scratch_bos[1 << 4][MESA_SHADER_STAGES];
} shaders;
struct {
struct iris_query *query;
bool condition;
} condition;
struct gen_perf_context *perf_ctx;
/** Frame number for debug prints */

View File

@ -832,8 +832,6 @@ iris_render_condition(struct pipe_context *ctx,
/* The old condition isn't relevant; we'll update it if necessary */
ice->state.compute_predicate = NULL;
ice->condition.query = q;
ice->condition.condition = condition;
if (!q) {
ice->state.predicate = IRIS_PREDICATE_STATE_RENDER;
@ -854,28 +852,10 @@ iris_render_condition(struct pipe_context *ctx,
}
}
static void
iris_resolve_conditional_render(struct iris_context *ice)
{
struct pipe_context *ctx = (void *) ice;
struct iris_query *q = ice->condition.query;
struct pipe_query *query = (void *) q;
union pipe_query_result result;
if (ice->state.predicate != IRIS_PREDICATE_STATE_USE_BIT)
return;
assert(q);
iris_get_query_result(ctx, query, true, &result);
set_predicate_enable(ice, (q->result != 0) ^ ice->condition.condition);
}
void
genX(init_query)(struct iris_context *ice)
{
struct pipe_context *ctx = &ice->ctx;
struct iris_screen *screen = (struct iris_screen *)ctx->screen;
ctx->create_query = iris_create_query;
ctx->create_batch_query = iris_create_batch_query;
@ -886,6 +866,4 @@ genX(init_query)(struct iris_context *ice)
ctx->get_query_result_resource = iris_get_query_result_resource;
ctx->set_active_query_state = iris_set_active_query_state;
ctx->render_condition = iris_render_condition;
screen->vtbl.resolve_conditional_render = iris_resolve_conditional_render;
}

View File

@ -70,7 +70,6 @@ struct iris_vtable {
const struct pipe_grid_info *grid);
void (*rebind_buffer)(struct iris_context *ice,
struct iris_resource *res);
void (*resolve_conditional_render)(struct iris_context *ice);
void (*load_register_reg32)(struct iris_batch *batch, uint32_t dst,
uint32_t src);
void (*load_register_reg64)(struct iris_batch *batch, uint32_t dst,