mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 23:49:43 +00:00
21 lines
426 B
GLSL
21 lines
426 B
GLSL
// vim: set ft=glsl:
|
|
// blue light filter shader
|
|
// values from https://reshade.me/forum/shader-discussion/3673-blue-light-filter-similar-to-f-lux
|
|
|
|
precision mediump float;
|
|
varying vec2 v_texcoord;
|
|
uniform sampler2D tex;
|
|
|
|
void main() {
|
|
|
|
vec4 pixColor = texture2D(tex, v_texcoord);
|
|
|
|
// red
|
|
pixColor[0] *= 0.7;
|
|
// green
|
|
pixColor[1] *= 0.6;
|
|
// blue
|
|
pixColor[2] *= 0.5;
|
|
|
|
gl_FragColor = pixColor;
|
|
}
|