From 3f122761a1732c32119c5bce6dfe4e83599576d9 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 11 Mar 2024 09:25:09 -0400 Subject: [PATCH] zink: remove stale comments for DRLR usage EXT_dynamic_rendering_local_read has arrived to rescue us from renderpasses once and for all, so this is no longer necessary Part-of: --- src/gallium/drivers/zink/zink_program.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gallium/drivers/zink/zink_program.h b/src/gallium/drivers/zink/zink_program.h index 7bef478c4fa..c769d1bd92c 100644 --- a/src/gallium/drivers/zink/zink_program.h +++ b/src/gallium/drivers/zink/zink_program.h @@ -406,7 +406,6 @@ ALWAYS_INLINE static bool zink_can_use_pipeline_libs(const struct zink_context *ctx) { return - /* TODO: if there's ever a dynamic render extension with input attachments */ !ctx->gfx_pipeline_state.render_pass && /* this is just terrible */ !zink_get_fs_base_key(ctx)->shadow_needs_shader_swizzle && @@ -423,7 +422,6 @@ ALWAYS_INLINE static bool zink_can_use_shader_objects(const struct zink_context *ctx) { return - /* TODO: if there's ever a dynamic render extension with input attachments */ !ctx->gfx_pipeline_state.render_pass && ZINK_SHADER_KEY_OPTIMAL_IS_DEFAULT(ctx->gfx_pipeline_state.optimal_key) && /* TODO: is sample shading even possible to handle with GPL? */