ludum_dare_38/res/shaders/default/default.fs

9 lines
140 B
Forth
Raw Normal View History

2024-08-07 04:28:53 +00:00
#version 450
uniform sampler2D sampler;
in vec2 textureCoords;
void main() {
gl_FragColor = texture2D(sampler, textureCoords);
}