v4k-git-backup/engine/shaders/fs_2_4_texel_inv_gamma.glsl

11 lines
232 B
Plaintext
Raw Normal View History

2023-08-10 21:53:51 +00:00
uniform sampler2D texture0;
uniform float u_inv_gamma;
in vec2 uv;
out vec4 fragcolor;
void main() {
vec4 texel = texture( texture0, uv );
fragcolor = texel;
fragcolor.rgb = pow( fragcolor.rgb, vec3( u_inv_gamma ) );
}