mirror of
https://github.com/stenzek/duckstation.git
synced 2024-11-22 21:39:40 +00:00
GPU/HW: Don't enable no-color-perspective when unsupported
i.e. GLES
This commit is contained in:
parent
b8f397c353
commit
babaffcce9
@ -1021,7 +1021,7 @@ bool GPU_HW::CompilePipelines(Error* error)
|
||||
(upscaled && m_texture_filtering == GPUTextureFilter::Nearest && g_settings.gpu_force_round_texcoords);
|
||||
const bool true_color = g_settings.gpu_true_color;
|
||||
const bool scaled_dithering = (!m_true_color && upscaled && g_settings.gpu_scaled_dithering);
|
||||
const bool disable_color_perspective = ShouldDisableColorPerspective();
|
||||
const bool disable_color_perspective = (features.noperspective_interpolation && ShouldDisableColorPerspective());
|
||||
|
||||
// Determine when to use shader blending.
|
||||
// FBFetch is free, we need it for filtering without DSB, or when accurate blending is forced.
|
||||
|
Loading…
Reference in New Issue
Block a user