mirror of
https://github.com/hyprwm/Hyprland
synced 2025-12-20 17:10:04 +01:00
19 lines
286 B
GLSL
19 lines
286 B
GLSL
//
|
|
// Example blue light filter shader.
|
|
//
|
|
|
|
#version 300 es
|
|
|
|
precision mediump float;
|
|
in vec2 v_texcoord;
|
|
layout(location = 0) out vec4 fragColor;
|
|
uniform sampler2D tex;
|
|
|
|
void main() {
|
|
|
|
vec4 pixColor = texture(tex, v_texcoord);
|
|
|
|
pixColor[2] *= 0.8;
|
|
|
|
fragColor = pixColor;
|
|
}
|