Toned down the BRIGHTEN blend mode a bit

This commit is contained in:
Collin Smith 2019-03-19 13:51:18 -07:00
parent ad1aeab45e
commit 722a179e94

View File

@ -75,11 +75,11 @@ void main() {
if (color.a > 0.0) { if (color.a > 0.0) {
// Apply contrast // Apply contrast
color.rgb -= 0.5; color.rgb -= 0.5;
color.rgb *= 1.8; color.rgb *= 1.5; // 1.8
color.rgb += 0.5; color.rgb += 0.5;
// Apply brightness // Apply brightness
color.rgb += 0.4; color.rgb += 0.3; // 0.4
} }
// Same as 1, except hard coded red // Same as 1, except hard coded red