From f7bf988fa6da750939fd44ef80f1ff7f588f426a Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Sat, 22 Dec 2012 19:04:59 +0000 Subject: [PATCH] neercs: disable the copperbars because they're not very nice, lol. --- neercs/video/copper.lolfx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/neercs/video/copper.lolfx b/neercs/video/copper.lolfx index 4dc7e17..015cb17 100644 --- a/neercs/video/copper.lolfx +++ b/neercs/video/copper.lolfx @@ -38,5 +38,7 @@ void main(void) color.y = float(int(color.y * 8.0) * 32) / 256.0; color.z = float(int(color.z * 8.0) * 32) / 256.0; - gl_FragColor = vec4((source == mask_color) ? color : source, 1.0); + // XXX: copper disabled because it's not very nice, lol + //gl_FragColor = vec4((source == mask_color) ? color : source, 1.0); + gl_FragColor = vec4(source, 1.0); }