shaders: Fix horizontal blur output colorspace

This commit is contained in:
Joshua Ashton 2023-04-19 16:57:59 +01:00 committed by Joshie
parent 092fccf9a6
commit 2da271d515

View file

@ -56,7 +56,7 @@ void main()
}
uint colorspace = get_layer_colorspace(0);
outputValue = colorspace_plane_regamma_tf(outputValue, 0);
outputValue = colorspace_plane_regamma_tf(outputValue, colorspace);
imageStore(dst, ivec2(coord), vec4(outputValue, 0));
}