mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-22 15:51:30 +11:00
Increase ceiling for blur strength, add disclaimer
This commit is contained in:
parent
ff05f61aa3
commit
c98782a2d7
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
This implementation adds a configurable blur strength which can diminish or accentuate the
|
This implementation adds a configurable blur strength which can diminish or accentuate the
|
||||||
effect compared to the reference implementation, equivalent to strength 1.0.
|
effect compared to the reference implementation, equivalent to strength 1.0.
|
||||||
|
A blur strength above 3.0 may lead to artifacts, especially on presets with fewer passes.
|
||||||
|
|
||||||
Changelog:
|
Changelog:
|
||||||
v1.0: Initial release.
|
v1.0: Initial release.
|
||||||
|
@ -23,5 +24,5 @@
|
||||||
|
|
||||||
// clang-format off
|
// clang-format off
|
||||||
#pragma parameter DUAL_FILTER_SETTINGS "=== Dual filter v1.0 settings ===" 0.0 0.0 1.0 1.0
|
#pragma parameter DUAL_FILTER_SETTINGS "=== Dual filter v1.0 settings ===" 0.0 0.0 1.0 1.0
|
||||||
#pragma parameter BLUR_STRENGTH "Blur strength" 1.0 0.6 5.0 0.1
|
#pragma parameter BLUR_STRENGTH "Blur strength" 1.0 0.6 7.5 0.1
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
Loading…
Reference in a new issue