Skip to content
Snippets Groups Projects
Commit 65a5a19f authored by Alexander Gauggel's avatar Alexander Gauggel
Browse files

[#82] Adjust bloom and lens flares to be a bit more subtle

parent f17c558d
No related branches found
No related tags found
1 merge request!70Resolve "Voxel cone tracing"
......@@ -62,8 +62,8 @@ void main()
vec3 main_color = imageLoad(colorBuffer, pixel_coord).rgb;
// composite blur and lens features
float bloom_weight = 0.25f;
float lens_weight = 0.25f;
float bloom_weight = 0.15f;
float lens_weight = 0.15f;
float main_weight = 1 - (bloom_weight + lens_weight);
lens_color *= starburst(UV);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment