From ae8692aa040222f4a9c9965280b541f912a644dd Mon Sep 17 00:00:00 2001 From: hizzlekizzle Date: Fri, 26 Aug 2016 11:34:43 -0500 Subject: [PATCH] remove testing failsafe on crt-royale-bloom-approx --- crt/shaders/crt-royale/src/crt-royale-bloom-approx.slang | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crt/shaders/crt-royale/src/crt-royale-bloom-approx.slang b/crt/shaders/crt-royale/src/crt-royale-bloom-approx.slang index 30e5775..9f22366 100644 --- a/crt/shaders/crt-royale/src/crt-royale-bloom-approx.slang +++ b/crt/shaders/crt-royale/src/crt-royale-bloom-approx.slang @@ -351,5 +351,5 @@ void main() color = vec3(color_r.r, color_g.g, color_b.b); } // Encode and output the blurred image: - FragColor = vec4(1.0);//vec4(color, 1.0); -} \ No newline at end of file + FragColor = vec4(color, 1.0); +}