Boost Bloom weight constant
Doubling from 0.025 to 0.05, which still looks good. Motivation - Karl says the effect seems to subtle and non-obvious.
This commit is contained in:
parent
00da6d60fb
commit
3f1c4477d6
1 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
Applies a "bloom" effect to the image.
|
Applies a "bloom" effect to the image.
|
||||||
(https://en.wikipedia.org/wiki/Bloom_(shader_effect))
|
(https://en.wikipedia.org/wiki/Bloom_(shader_effect))
|
||||||
|
|
||||||
Last updated: February 7, 2023
|
Last updated: February 27, 2023
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
#define BLOOM_PAINT_RADIUS 24
|
#define BLOOM_PAINT_RADIUS 24
|
||||||
|
|
||||||
/* Overall weight to apply the sampled pixels */
|
/* Overall weight to apply the sampled pixels */
|
||||||
#define BLOOM_WEIGHT_CONST 0.025
|
#define BLOOM_WEIGHT_CONST 0.05
|
||||||
|
|
||||||
/* Length of spike shape */
|
/* Length of spike shape */
|
||||||
#define BLOOM_SPIKE_LENGTH 5
|
#define BLOOM_SPIKE_LENGTH 5
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue