From c5d8ef97faefb1cda7bbbb2fbc0eb81de5537a7e Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Tue, 10 May 2022 10:17:50 +0200 Subject: [PATCH] radv: rename VERT_GRP_SIZE to VERTS_PER_SUBGRP on GFX11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same bitfield but it has been renamed. Signed-off-by: Samuel Pitoiset Reviewed-by: Timur Kristóf Part-of: --- src/amd/vulkan/radv_pipeline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index f71206fe0e5..9a99145e3c6 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -5788,7 +5788,7 @@ radv_pipeline_emit_hw_ngg(struct radeon_cmdbuf *ctx_cs, struct radeon_cmdbuf *cs if (pdevice->rad_info.gfx_level >= GFX11) { ge_cntl = S_03096C_PRIMS_PER_SUBGRP(ngg_state->max_gsprims) | - S_03096C_VERT_GRP_SIZE(ngg_state->enable_vertex_grouping + S_03096C_VERTS_PER_SUBGRP(ngg_state->enable_vertex_grouping ? ngg_state->hw_max_esverts : 256) | /* 256 = disable vertex grouping */ S_03096C_BREAK_PRIMGRP_AT_EOI(break_wave_at_eoi) |