View Single Post
  #4  
Old 10-29-2012, 09:48 PM
adonys adonys is offline
Approved Member
 
Join Date: Apr 2010
Posts: 850
Default

Les, have you ported your Neutral3 and Neutral5 to SweetFX? I would like to test the Neutral5 into SweetFX please.

Also, please note that in injector.ini you have:

Code:
[smaa]
;smaa preset one of {SMAA_PRESET_LOW, SMAA_PRESET_MEDIUM, SMAA_PRESET_HIGH, SMAA_PRESET_ULTRA}
;keep it set to SMAA_PRESET_CUSTOM to allow for custom settings
preset = SMAA_PRESET_CUSTOM
which means the SMAA is running with the settings from your custom settings (defined in SweetFX_presets.txt file, and which by default are the ones from SweetFX_settings.txt file), which are:
Code:
#define SMAA_THRESHOLD 0.12           // [0.05 to 0.20] Edge detection threshold
#define SMAA_MAX_SEARCH_STEPS 16      // [0 to 98] Determines the radius SMAA will search for aliased edges
#define SMAA_MAX_SEARCH_STEPS_DIAG 6  // [0 to 16] Determines the radius SMAA will search for diagonal aliased edges
#define SMAA_CORNER_ROUNDING 0        // [0 to 100] Determines the percent of antialiasing to apply to corners.
and therefore somewhere in between the default SMAA_PRESET_MEDIUM (80% quality) and SMAA_PRESET_HIGH (95% quality)

if you want to see SMAA at its best, copy the settings of SMAA_PRESET_HIGH (99% quality) from SMAA.h file into your custom settings file (default is SweetFX_settings.txt file)
Reply With Quote