m2b-ar-tp2/shaders/fish.frag

7 lines
119 B
GLSL
Raw Permalink Normal View History

2021-10-06 23:41:17 +02:00
varying vec2 fragment_uv;
uniform sampler2D texture;
2021-10-06 19:49:42 +02:00
void main() {
2021-10-06 23:41:17 +02:00
gl_FragColor = texture2D(texture, fragment_uv);
2021-10-06 19:49:42 +02:00
}