This repository has been archived on 2022-05-19. You can view files and clone it, but cannot push or open issues or pull requests.
DemoGL4D/shaders/kirby.fs
2022-05-19 14:07:56 +02:00

10 lines
140 B
GLSL

#version 330
uniform sampler2D tex;
in vec2 vsoTexCoord;
out vec4 fragColor;
void main() {
fragColor = texture(tex, vsoTexCoord);
}