[client] egl: enable ffxCAS if disabled and the sharpness is changed

This commit is contained in:
Geoffrey McRae 2021-08-10 07:56:24 +10:00
parent 64ed383128
commit e707f9d933

View File

@ -286,6 +286,13 @@ void egl_desktopConfigUI(EGL_Desktop * desktop)
if (sharpness != desktop->ffxUniform.f[0])
{
// enable CAS if the sharpness was changed
if (!cas)
{
cas = true;
desktop->ffxCASEnable = cas;
egl_textureEnableFilter(desktop->ffxCASHandle, cas);
}
desktop->ffxUniform.f[0] = sharpness;
egl_shaderSetUniforms(desktop->ffxCAS, &desktop->ffxUniform, 1);
invalidateCAS = true;