Skip to content

Commit

Permalink
Cosmetic changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Keijiro Takahashi authored and Keijiro Takahashi committed Mar 11, 2016
1 parent d3c431c commit ef963e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Kino/Bloom/Shader/Bloom.shader
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Shader "Hidden/Kino/Bloom"
half s2w = 1 / (Brightness(s2) + 1);
half s3w = 1 / (Brightness(s3) + 1);
half s4w = 1 / (Brightness(s4) + 1);
half one_div_wsum = 1.0 / (s1w + s2w + s3w + s4w);
half one_div_wsum = 1 / (s1w + s2w + s3w + s4w);

return (s1 * s1w + s2 * s2w + s3 * s3w + s4 * s4w) * one_div_wsum;
}
Expand Down

0 comments on commit ef963e7

Please sign in to comment.