From ac862b04ab8445ad83b04b642c3922ddfc675e29 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sat, 9 Dec 2023 15:07:35 -0600 Subject: VideoBackends / VideoCommon: update max pixel shader samplers from 8 to 16, this allows us to support more samplers than the native Wii/GC --- Source/Core/VideoCommon/Constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon') diff --git a/Source/Core/VideoCommon/Constants.h b/Source/Core/VideoCommon/Constants.h index bd939b1f3c..2d411acead 100644 --- a/Source/Core/VideoCommon/Constants.h +++ b/Source/Core/VideoCommon/Constants.h @@ -7,6 +7,6 @@ namespace VideoCommon { -constexpr u32 MAX_PIXEL_SHADER_SAMPLERS = 8; +constexpr u32 MAX_PIXEL_SHADER_SAMPLERS = 16; constexpr u32 MAX_COMPUTE_SHADER_SAMPLERS = 8; } // namespace VideoCommon -- cgit v1.2.3