funky edge shading

This commit is contained in:
Evan Pratten 2021-10-02 20:32:04 -04:00
parent bf1852eee3
commit 06fd369eec

View File

@ -56,10 +56,10 @@ void main() {
warpedUV.y += 0.5; warpedUV.y += 0.5;
// If the UV is outside the texture, return black // If the UV is outside the texture, return black
vec4 finalColorModifier = vec4(1.0);
if (warpedUV.x < 0.0 || warpedUV.x > 1.0 || warpedUV.y < 0.0 || if (warpedUV.x < 0.0 || warpedUV.x > 1.0 || warpedUV.y < 0.0 ||
warpedUV.y > 1.0) { warpedUV.y > 1.0) {
finalColor = vec4(0.0, 0.0, 0.0, 1.0); finalColorModifier = vec4(0.15);
return;
} }
// --- BEGIN BLOOM EFFECT --- // --- BEGIN BLOOM EFFECT ---
@ -82,5 +82,5 @@ void main() {
vec4 texWithBloom = vec4 texWithBloom =
((textureSum / (bloomSamples * bloomSamples)) + texture(texture0, warpedUV)) * colDiffuse; ((textureSum / (bloomSamples * bloomSamples)) + texture(texture0, warpedUV)) * colDiffuse;
finalColor = vec4( finalColor = vec4(
mix(texWithBloom.rgb, vec3(0.0), scanlineFactor), 1.0); mix(texWithBloom.rgb, vec3(0.0), scanlineFactor), 1.0) * finalColorModifier;
} }