Rearranging the shaders and scripts to hopefully make the project easier to work on

This commit is contained in:
Rezmason
2021-10-29 09:27:28 -07:00
parent dd4fe3cac6
commit 94f5f1e5ec
21 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,11 @@
precision mediump float;
varying vec2 vUV;
uniform sampler2D tex;
uniform float highPassThreshold;
void main() {
vec4 color = texture2D(tex, vUV);
if (color.r < highPassThreshold) color.r = 0.0;
if (color.g < highPassThreshold) color.g = 0.0;
if (color.b < highPassThreshold) color.b = 0.0;
gl_FragColor = color;
}