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

9 lines
152 B
GLSL

uniform sampler2D texture0; /*unit0*/
in vec2 uv;
out vec4 fragcolor;
void main() {
vec4 texel = texture( texture0, uv );
fragcolor = texel;
}