From 02282fe482e6adfbaad76cf27aee4aa7afa3652c Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Fri, 15 Dec 2023 17:58:54 +0100 Subject: [PATCH] radv: move SI_GS_PER_ES to radv_constants.h Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/vulkan/radv_constants.h | 2 ++ src/amd/vulkan/radv_private.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/amd/vulkan/radv_constants.h b/src/amd/vulkan/radv_constants.h index 514f82ac685..572acb4948c 100644 --- a/src/amd/vulkan/radv_constants.h +++ b/src/amd/vulkan/radv_constants.h @@ -80,6 +80,8 @@ #define RING_PS_ATTR 10 #define RING_PS_SAMPLE_POSITIONS 11 +#define SI_GS_PER_ES 128 + /* max number of descriptor sets */ #define MAX_SETS 32 diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 45a0bf268fd..b5a6feba0a2 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -1973,8 +1973,6 @@ struct radv_prim_vertex_count { uint8_t incr; }; -#define SI_GS_PER_ES 128 - enum radv_pipeline_type { RADV_PIPELINE_GRAPHICS, RADV_PIPELINE_GRAPHICS_LIB,