From 51b0645963a01064fb3c3b02fe4c114ac7408d8f Mon Sep 17 00:00:00 2001 From: myownfriend Date: Tue, 20 May 2014 23:51:34 -0400 Subject: [PATCH] Update invertedoutline.glsl --- Data/Sys/Shaders/invertedoutline.glsl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Data/Sys/Shaders/invertedoutline.glsl b/Data/Sys/Shaders/invertedoutline.glsl index 66d24fb5ca..70363ddbbd 100644 --- a/Data/Sys/Shaders/invertedoutline.glsl +++ b/Data/Sys/Shaders/invertedoutline.glsl @@ -7,8 +7,8 @@ uniform vec4 resolution; void main() { - float4 c0 = texture(samp9, uv0); - float4 c1 = texture(samp9, uv0 + float2(5,5)*resolution.zw); + float4 c0 = texture(samp9, uv0); + float4 c1 = texture(samp9, uv0 + float2(5,5)*resolution.zw); - ocol0 = c0 - c1; -} \ No newline at end of file + ocol0 = c0 - c1; +}