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

9 lines
152 B
Plaintext
Raw Normal View History

2023-08-10 22:46:04 +00:00
uniform sampler2D texture0; /*unit0*/
2023-09-10 14:46:07 +00:00
2023-08-10 21:53:51 +00:00
in vec2 uv;
out vec4 fragcolor;
void main() {
vec4 texel = texture( texture0, uv );
fragcolor = texel;
}