VideoBackends / VideoCommon: update max pixel shader samplers from 8 to 16, this allows us to support more samplers than the native Wii/GC

This commit is contained in:
iwubcode
2023-12-09 15:07:35 -06:00
parent 003872d7dd
commit ac862b04ab
5 changed files with 22 additions and 8 deletions

View File

@ -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