1
0
Fork 0
Univerxel/content/shaders/UI.fs

12 lines
168 B
Forth
Raw Normal View History

2020-07-06 19:18:29 +00:00
#version 330 core
// Ouput data
layout(location = 0) out vec4 color;
uniform sampler2D Texture;
in vec2 UV;
void main(){
color = texture(Texture, UV);
}