From 45e6fcef4bba2623143b67767199e0170b9948aa Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 12 Mar 2021 12:19:53 -0500 Subject: [PATCH] zink: remove debug printf accidentally left this in while bisecting Fixes: 929a748401f ("zink: avoid hashing states without descriptors") Reviewed-by: Erik Faye-Lund Acked-by: Jason Ekstrand Part-of: --- src/gallium/drivers/zink/zink_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/zink/zink_context.c b/src/gallium/drivers/zink/zink_context.c index ac0d587ec1c..d2d38f24408 100644 --- a/src/gallium/drivers/zink/zink_context.c +++ b/src/gallium/drivers/zink/zink_context.c @@ -188,7 +188,7 @@ update_descriptor_stage_state(struct zink_context *ctx, enum pipe_shader_type sh static void update_descriptor_state(struct zink_context *ctx, enum zink_descriptor_type type, bool is_compute) -{printf("UPDATE\n"); +{ /* we shouldn't be calling this if we don't have to */ assert(!ctx->descriptor_states[is_compute].valid[type]); bool has_any_usage = false;