Revert "VideoCommon: revert max pixel shader samplers back to 8 for Android devices."

This reverts commit 79648e1c24.
This commit is contained in:
iwubcode
2024-01-03 18:43:44 -06:00
parent 48eb8b17ef
commit 1073722cdf
3 changed files with 0 additions and 26 deletions

View File

@ -7,13 +7,6 @@
namespace VideoCommon
{
#ifdef ANDROID
// Some devices seem to have graphical errors when providing 16 pixel samplers
// given the logic is for a performance heavy feature (custom shaders), will just disable for now
// TODO: handle this more elegantly
constexpr u32 MAX_PIXEL_SHADER_SAMPLERS = 8;
#else
constexpr u32 MAX_PIXEL_SHADER_SAMPLERS = 16;
#endif
constexpr u32 MAX_COMPUTE_SHADER_SAMPLERS = 8;
} // namespace VideoCommon