From 038aac57a3f8b2046a114bdfe8b2c131ea4a9166 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timur=20Krist=C3=B3f?= Date: Fri, 29 Aug 2025 12:13:20 +0200 Subject: [PATCH] radeonsi: Fix some comments to also include GFX11.5 Just a nitpick. Part-of: --- src/gallium/drivers/radeonsi/si_state_draw.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_state_draw.cpp b/src/gallium/drivers/radeonsi/si_state_draw.cpp index 4a3f7aa3b05..82e2787973b 100644 --- a/src/gallium/drivers/radeonsi/si_state_draw.cpp +++ b/src/gallium/drivers/radeonsi/si_state_draw.cpp @@ -2218,7 +2218,7 @@ static void si_draw(struct pipe_context *ctx, index_offset -= start_offset; } else if ((GFX_VERSION <= GFX7 || GFX_VERSION == GFX12) && si_resource(indexbuf)->L2_cache_dirty) { - /* GFX8-GFX11 reads index buffers through L2, so it doesn't + /* GFX8-GFX11.5 reads index buffers through L2, so it doesn't * need this. */ sctx->barrier_flags |= SI_BARRIER_WB_L2 | SI_BARRIER_PFP_SYNC_ME; si_mark_atom_dirty(sctx, &sctx->atoms.s.barrier); @@ -2232,7 +2232,7 @@ static void si_draw(struct pipe_context *ctx, unsigned total_direct_count = 0; if (!IS_DRAW_VERTEX_STATE && indirect) { - /* Indirect buffers use L2 on GFX9-GFX11, but not other hw. */ + /* Indirect buffers use L2 on GFX9-GFX11.5, but not other hw. */ if (GFX_VERSION <= GFX8 || GFX_VERSION == GFX12) { if (indirect->buffer && si_resource(indirect->buffer)->L2_cache_dirty) { sctx->barrier_flags |= SI_BARRIER_WB_L2 | SI_BARRIER_PFP_SYNC_ME;