diff --git a/Enthusiast/CaptainToadTreasureTracker_2880p/0457fe3efc9a772f_0000000000000079_ps.txt b/Enthusiast/CaptainToadTreasureTracker_2880p/0457fe3efc9a772f_0000000000000079_ps.txt deleted file mode 100644 index ecbdb758..00000000 --- a/Enthusiast/CaptainToadTreasureTracker_2880p/0457fe3efc9a772f_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 0457fe3efc9a772f -// Used for: Horizontal Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/CaptainToadTreasureTracker_2880p/9fad3b3505a6d831_0000000000000079_ps.txt b/Enthusiast/CaptainToadTreasureTracker_2880p/9fad3b3505a6d831_0000000000000079_ps.txt deleted file mode 100644 index 1ca34191..00000000 --- a/Enthusiast/CaptainToadTreasureTracker_2880p/9fad3b3505a6d831_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 9fad3b3505a6d831 -// Used for: Vertical Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/CaptainToadTreasureTracker_4320p/0457fe3efc9a772f_0000000000000079_ps.txt b/Enthusiast/CaptainToadTreasureTracker_4320p/0457fe3efc9a772f_0000000000000079_ps.txt deleted file mode 100644 index ecbdb758..00000000 --- a/Enthusiast/CaptainToadTreasureTracker_4320p/0457fe3efc9a772f_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 0457fe3efc9a772f -// Used for: Horizontal Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/CaptainToadTreasureTracker_4320p/9fad3b3505a6d831_0000000000000079_ps.txt b/Enthusiast/CaptainToadTreasureTracker_4320p/9fad3b3505a6d831_0000000000000079_ps.txt deleted file mode 100644 index 1ca34191..00000000 --- a/Enthusiast/CaptainToadTreasureTracker_4320p/9fad3b3505a6d831_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 9fad3b3505a6d831 -// Used for: Vertical Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/CaptainToadTreasureTracker_5760p/0457fe3efc9a772f_0000000000000079_ps.txt b/Enthusiast/CaptainToadTreasureTracker_5760p/0457fe3efc9a772f_0000000000000079_ps.txt deleted file mode 100644 index ecbdb758..00000000 --- a/Enthusiast/CaptainToadTreasureTracker_5760p/0457fe3efc9a772f_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 0457fe3efc9a772f -// Used for: Horizontal Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/CaptainToadTreasureTracker_5760p/9fad3b3505a6d831_0000000000000079_ps.txt b/Enthusiast/CaptainToadTreasureTracker_5760p/9fad3b3505a6d831_0000000000000079_ps.txt deleted file mode 100644 index 1ca34191..00000000 --- a/Enthusiast/CaptainToadTreasureTracker_5760p/9fad3b3505a6d831_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 9fad3b3505a6d831 -// Used for: Vertical Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/MK8_2880p/4727ccdea05045d0_0000000000000079_ps.txt b/Enthusiast/MK8_2880p/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Enthusiast/MK8_2880p/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/MK8_2880p/6dc0532bfaf19019_0000000000000079_ps.txt b/Enthusiast/MK8_2880p/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Enthusiast/MK8_2880p/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/MK8_4320p/4727ccdea05045d0_0000000000000079_ps.txt b/Enthusiast/MK8_4320p/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Enthusiast/MK8_4320p/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/MK8_4320p/6dc0532bfaf19019_0000000000000079_ps.txt b/Enthusiast/MK8_4320p/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Enthusiast/MK8_4320p/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/MK8_5760p/4727ccdea05045d0_0000000000000079_ps.txt b/Enthusiast/MK8_5760p/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Enthusiast/MK8_5760p/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Enthusiast/MK8_5760p/6dc0532bfaf19019_0000000000000079_ps.txt b/Enthusiast/MK8_5760p/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Enthusiast/MK8_5760p/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_1080p/0457fe3efc9a772f_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_1080p/0457fe3efc9a772f_0000000000000079_ps.txt deleted file mode 100644 index ecbdb758..00000000 --- a/Quality/CaptainToadTreasureTracker_1080p/0457fe3efc9a772f_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 0457fe3efc9a772f -// Used for: Horizontal Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_1080p/9fad3b3505a6d831_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_1080p/9fad3b3505a6d831_0000000000000079_ps.txt deleted file mode 100644 index 1ca34191..00000000 --- a/Quality/CaptainToadTreasureTracker_1080p/9fad3b3505a6d831_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 9fad3b3505a6d831 -// Used for: Vertical Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_1080pUW/0457fe3efc9a772f_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_1080pUW/0457fe3efc9a772f_0000000000000079_ps.txt deleted file mode 100644 index ecbdb758..00000000 --- a/Quality/CaptainToadTreasureTracker_1080pUW/0457fe3efc9a772f_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 0457fe3efc9a772f -// Used for: Horizontal Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_1080pUW/9fad3b3505a6d831_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_1080pUW/9fad3b3505a6d831_0000000000000079_ps.txt deleted file mode 100644 index 1ca34191..00000000 --- a/Quality/CaptainToadTreasureTracker_1080pUW/9fad3b3505a6d831_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 9fad3b3505a6d831 -// Used for: Vertical Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_1440p/0457fe3efc9a772f_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_1440p/0457fe3efc9a772f_0000000000000079_ps.txt deleted file mode 100644 index ecbdb758..00000000 --- a/Quality/CaptainToadTreasureTracker_1440p/0457fe3efc9a772f_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 0457fe3efc9a772f -// Used for: Horizontal Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_1440p/9fad3b3505a6d831_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_1440p/9fad3b3505a6d831_0000000000000079_ps.txt deleted file mode 100644 index 1ca34191..00000000 --- a/Quality/CaptainToadTreasureTracker_1440p/9fad3b3505a6d831_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 9fad3b3505a6d831 -// Used for: Vertical Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_1800p/0457fe3efc9a772f_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_1800p/0457fe3efc9a772f_0000000000000079_ps.txt deleted file mode 100644 index ecbdb758..00000000 --- a/Quality/CaptainToadTreasureTracker_1800p/0457fe3efc9a772f_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 0457fe3efc9a772f -// Used for: Horizontal Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_1800p/9fad3b3505a6d831_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_1800p/9fad3b3505a6d831_0000000000000079_ps.txt deleted file mode 100644 index 1ca34191..00000000 --- a/Quality/CaptainToadTreasureTracker_1800p/9fad3b3505a6d831_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 9fad3b3505a6d831 -// Used for: Vertical Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_2160p/0457fe3efc9a772f_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_2160p/0457fe3efc9a772f_0000000000000079_ps.txt deleted file mode 100644 index ecbdb758..00000000 --- a/Quality/CaptainToadTreasureTracker_2160p/0457fe3efc9a772f_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 0457fe3efc9a772f -// Used for: Horizontal Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/CaptainToadTreasureTracker_2160p/9fad3b3505a6d831_0000000000000079_ps.txt b/Quality/CaptainToadTreasureTracker_2160p/9fad3b3505a6d831_0000000000000079_ps.txt deleted file mode 100644 index 1ca34191..00000000 --- a/Quality/CaptainToadTreasureTracker_2160p/9fad3b3505a6d831_0000000000000079_ps.txt +++ /dev/null @@ -1,27 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 9fad3b3505a6d831 -// Used for: Vertical Bloom -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_1080p/4727ccdea05045d0_0000000000000079_ps.txt b/Quality/MK8_1080p/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Quality/MK8_1080p/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_1080p/6dc0532bfaf19019_0000000000000079_ps.txt b/Quality/MK8_1080p/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Quality/MK8_1080p/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_1080pUW/4727ccdea05045d0_0000000000000079_ps.txt b/Quality/MK8_1080pUW/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Quality/MK8_1080pUW/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_1080pUW/6dc0532bfaf19019_0000000000000079_ps.txt b/Quality/MK8_1080pUW/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Quality/MK8_1080pUW/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_1440p/4727ccdea05045d0_0000000000000079_ps.txt b/Quality/MK8_1440p/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Quality/MK8_1440p/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_1440p/6dc0532bfaf19019_0000000000000079_ps.txt b/Quality/MK8_1440p/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Quality/MK8_1440p/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_1800p/4727ccdea05045d0_0000000000000079_ps.txt b/Quality/MK8_1800p/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Quality/MK8_1800p/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_1800p/6dc0532bfaf19019_0000000000000079_ps.txt b/Quality/MK8_1800p/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Quality/MK8_1800p/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_2160p/4727ccdea05045d0_0000000000000079_ps.txt b/Quality/MK8_2160p/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Quality/MK8_2160p/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_2160p/6dc0532bfaf19019_0000000000000079_ps.txt b/Quality/MK8_2160p/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Quality/MK8_2160p/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_2160pUW/4727ccdea05045d0_0000000000000079_ps.txt b/Quality/MK8_2160pUW/4727ccdea05045d0_0000000000000079_ps.txt deleted file mode 100644 index 4865cfe2..00000000 --- a/Quality/MK8_2160pUW/4727ccdea05045d0_0000000000000079_ps.txt +++ /dev/null @@ -1,28 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 4727ccdea05045d0 -// Used for: Horizontal Blur -const float blurFactor = 1.0; //Higher is less blur - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.w, passParameterSem0.x); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(offset[i], 0.0) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(offset[i], 0.0) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file diff --git a/Quality/MK8_2160pUW/6dc0532bfaf19019_0000000000000079_ps.txt b/Quality/MK8_2160pUW/6dc0532bfaf19019_0000000000000079_ps.txt deleted file mode 100644 index bdd61599..00000000 --- a/Quality/MK8_2160pUW/6dc0532bfaf19019_0000000000000079_ps.txt +++ /dev/null @@ -1,29 +0,0 @@ -#version 420 -#extension GL_ARB_texture_gather : enable -// shader 6dc0532bfaf19019 -// Used for: Vertical Blur -const float blurFactor = 1.0; //Higher is less blur - - -// Implementation of http://rastergrid.com/blog/2010/09/efficient-gaussian-blur-with-linear-sampling/ -layout(binding = 0) uniform sampler2D textureUnitPS0; -layout(location = 0) in vec4 passParameterSem0; -layout(location = 0) out vec4 passPixelColor0; -uniform vec2 uf_fragCoordScale; - -uniform float weight[] = float[](0.18571429, 0.28870130, 0.10363636, 0.01480519); -uniform float offset[] = float[](0.00000000, 1.42105263, 3.31578947, 5.21052632); - -ivec2 inputRes = textureSize(textureUnitPS0, 0); -vec2 outputRes = vec2(float(inputRes.x), float(inputRes.y)); -vec2 scale = outputRes * blurFactor; -void main() -{ - vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w); - vec4 R1f = texture(textureUnitPS0, R0f) * weight[0]; - for (int i = 1; i<4; i++) { - R1f += texture(textureUnitPS0, R0f + (vec2(0.0, offset[i]) / scale)) * weight[i]; - R1f += texture(textureUnitPS0, R0f - (vec2(0.0, offset[i]) / scale)) * weight[i]; - } - passPixelColor0 = R1f; -} \ No newline at end of file