mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-23 08:11:29 +11:00
b0b12b6a64
- New implementation of Film Grain that doesn't suck, so we can turn it up a nod by default. Supports RGB noise and shaping the distribution curve to control noise modulation. The previous implementation was just a placeholder, it was very basic. - Greatly increased Anti-Aliasing quality in default preset. - Include license headers to make clear that all my contributions are released on the public domain under the terms of the Unlicense. Anyone can do whatever they want with this.
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
shaders = 6
|
|
|
|
shader0 = ../stock.slang
|
|
filter_linear0 = false
|
|
scale_type0 = source
|
|
scale0 = 1.0
|
|
alias0 = SMAA_Input
|
|
|
|
shader1 = ../anti-aliasing/shaders/smaa/smaa-pass0.slang
|
|
filter_linear1 = true
|
|
scale_type1 = source
|
|
scale1 = 1.0
|
|
|
|
shader2 = ../anti-aliasing/shaders/smaa/smaa-pass1.slang
|
|
filter_linear2 = true
|
|
scale_type2 = source
|
|
scale2 = 1.0
|
|
|
|
shader3 = ../anti-aliasing/shaders/smaa/smaa-pass2.slang
|
|
filter_linear3 = true
|
|
scale_type3 = source
|
|
scale3 = 1.0
|
|
|
|
textures = "areaTex;searchTex"
|
|
areaTex = ../anti-aliasing/shaders/smaa/AreaTex.png
|
|
searchTex = ../anti-aliasing/shaders/smaa/SearchTex.png
|
|
|
|
shader4 = shaders/fsr-pass0.slang
|
|
filter_linear4 = true
|
|
scale_type4 = viewport
|
|
scale4 = 1.0
|
|
|
|
shader5 = shaders/fsr-pass1.slang
|
|
filter_linear5 = true
|
|
scale_type5 = source
|
|
scale5 = 1.0
|
|
|
|
parameters = "SMAA_EDT;SMAA_THRESHOLD;SMAA_MAX_SEARCH_STEPS;SMAA_MAX_SEARCH_STEPS_DIAG;SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR;SMAA_CORNER_ROUNDING;FSR_SHARPENING;FSR_FILMGRAIN;FSR_GRAINCOLOR;FSR_GRAINPDF"
|
|
SMAA_EDT = 1.0
|
|
SMAA_THRESHOLD = 0.05
|
|
SMAA_MAX_SEARCH_STEPS = 40
|
|
SMAA_MAX_SEARCH_STEPS_DIAG = 20
|
|
SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR = 2.5
|
|
SMAA_CORNER_ROUNDING = 50.0
|
|
FSR_SHARPENING = 0.1
|
|
FSR_FILMGRAIN = 0.3
|
|
FSR_GRAINCOLOR = 1.0
|
|
FSR_GRAINPDF = 0.3
|