[XCX] motion blur -> const to scaling

fixes artifacts but less blurry on 4k+
This commit is contained in:
getdls 2018-03-03 02:27:38 +01:00
parent 47aa3c10b2
commit c430a7747d

View File

@ -2,9 +2,9 @@
#version 420 #version 420
#extension GL_ARB_texture_gather : enable #extension GL_ARB_texture_gather : enable
// shader b253dca415790207 // shader b253dca415790207
// motion blur fix - static /2 factor as a compromise. fx gets lost in blend on higher scaling // motion blur scaling
// To-do, review quarter scaling.
const float resScale = 2.0; const float resScale = <?=$scaleFactorX?>;
//const float resScale = 3; //const float resScale = 3;
uniform ivec4 uf_remappedPS[5]; uniform ivec4 uf_remappedPS[5];