Sure thing, I'm assuming you're comfortable with compiling from source, right? This is the file you need to replace: https://www.dropbox.com/s/xu2jz02wun13n ... r.cpp?dl=0almeath wrote: ↑Thu Apr 23, 2020 1:36 amWonderful! Presets would be great, but could you also provide a quick set of instructions to advise how to alter the key settings, particularly curvature - I’m not a huge fan of curvature, just my personal preference. Well done though!AgustinCordes wrote: ↑Thu Apr 23, 2020 1:27 am I tweaked the Lottes shader from the crt-emulation branch with the following results:![]()
And this is the bit you need to edit to disable the curvature effect:
Code: Select all
"// Display warp.\n"
"// 0.0 = none\n"
"// 1.0/8.0 = extreme\n"
"vec2 warp=vec2(1.0/64.0,1.0/32.0); \n"
Code: Select all
vec2 warp=vec2(0.0,0.0);