![]() |
|
Technical threads All discussions about technical issues |
![]() |
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
![]() Quote:
Code:
And four presets: * SMAA_PRESET_LOW (%60 of the quality) * SMAA_PRESET_MEDIUM (%80 of the quality) * SMAA_PRESET_HIGH (%95 of the quality) * SMAA_PRESET_ULTRA (%99 of the quality) Code:
//----------------------------------------------------------------------------- // SMAA Presets #if SMAA_PRESET_LOW == 1 #define SMAA_THRESHOLD 0.15 #define SMAA_MAX_SEARCH_STEPS 4 #define SMAA_MAX_SEARCH_STEPS_DIAG 0 #define SMAA_CORNER_ROUNDING 100 #elif SMAA_PRESET_MEDIUM == 1 #define SMAA_THRESHOLD 0.1 #define SMAA_MAX_SEARCH_STEPS 8 #define SMAA_MAX_SEARCH_STEPS_DIAG 0 #define SMAA_CORNER_ROUNDING 100 #elif SMAA_PRESET_HIGH == 1 #define SMAA_THRESHOLD 0.1 #define SMAA_MAX_SEARCH_STEPS 16 #define SMAA_MAX_SEARCH_STEPS_DIAG 8 #define SMAA_CORNER_ROUNDING 25 #elif SMAA_PRESET_ULTRA == 1 #define SMAA_THRESHOLD 0.05 #define SMAA_MAX_SEARCH_STEPS 32 #define SMAA_MAX_SEARCH_STEPS_DIAG 16 #define SMAA_CORNER_ROUNDING 25 #endif |
#2
|
|||
|
|||
![]()
Les, I wanted to thank you for the work you did on both injectors. My game look better than ever.
Adonys thank you for the SMAA Ultra it really changes everything about the game. it' s really better than FXAA: no more blurred distant planes, no more jagged and weird-looking welding lines all over the planes. the only problem is that sun reflections on canopies are a little aliased. More people should try it. It' s the first AA that really looks well on this game EDIT:I set #define SMAA_MAX_SEARCH_STEPS from 32 to 98(max) and I think it improved the rendering without noticeable FPS loss. Last edited by ElGringo; 11-01-2012 at 12:59 AM. |
![]() |
|
|