@Karbe: ah, da hat jemand Geschmack
wo ich mich eh grad damit beschäftige und Dank der Pausetaste ja sogar hin und her stellen kann, hab ich nochma rumgewurschtelt.
sieht jetze so aus:
/*------------------------------------------------------------------------------
FILTER SELECTION
------------------------------------------------------------------------------*/
// Comment to deactivate an effect.
// Example: To disable the tonemap effect, use // in front of #define USE_TONEMAP
#define USE_ANTI_ALIASING
//#define USE_PRE_SHARPEN
//#define USE_BLOOM
//#define USE_TECHNICOLOR
#define USE_TONEMAP
#define USE_SEPIA
//#define USE_VIGNETTE
#define USE_POST_SHARPEN
//#define USE_FINAL_LIMITER
...
/*------------------------------------------------------------------------------
FXAA SHADER
------------------------------------------------------------------------------*/
// Set values to calculate the amount of Anti Aliasing applied
float fxaaQualitySubpix = 0.99; // Default: 0.75 Raise to increase amount of blur
float fxaaQualityEdgeThreshold = 0.100; // Lower the value for more smoothing
float fxaaQualityEdgeThresholdMin = 0.500; // Lower the value for more smoothing
...
TONEMAP
------------------------------------------------------------------------------*/
#define Gamma 0.93
#define Exposure 0.00
#define Saturation 0.33
#define BlueShift 0.00
#define Bleach 0.00
#define Defog 0.1
#define FogColor float4(0.05, 0.11, 0.09, 2.0)
/*------------------------------------------------------------------------------
SEPIA
------------------------------------------------------------------------------*/
#define Earthyellow // Color Tone, available tones can be seen in ColorTones.PNG (Do not use spaces in the name!)
#define GreyPower 0.0
#define SepiaPower 0.133
...
POST_SHARPEN
------------------------------------------------------------------------------*/
// Controls additional sharpening applied after previous processing. Strength should be max 0.25!
float Sharpen = 0.25;
sehr, sehr nah am Original.
dezent den "Blaustich" per leichtem Sepia verringert.
minimal den Kontrast runter gesetzt.
und etwas mehr Farbe.
weil beim umswitchen fiel mir auf, dass Wolken und Pfützen (und wahrscheinlich noch anderes) überblenden mitm FXAA.
da fehlen dann doch ein paar nette Details die man vor lauter Weiß nicht mehr sieht.
die Pausetaste ist eh echt geil beim Einstellen.
man kann super umher switschen, nochmal was ändern, wieder gucken und vergleichen.
besten Dank für den hinweis an speedtree!