mirror of
https://github.com/Rezmason/matrix.git
synced 2026-04-22 23:59:31 -07:00
All non-trivial shaders are now loaded from files.
This commit is contained in:
14
shaders/glsl/bloomPass.highPass.frag.glsl
Normal file
14
shaders/glsl/bloomPass.highPass.frag.glsl
Normal file
@@ -0,0 +1,14 @@
|
||||
precision mediump float;
|
||||
|
||||
uniform sampler2D tex;
|
||||
uniform float highPassThreshold;
|
||||
|
||||
varying vec2 vUV;
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user