]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - shaders/gui/image/fragment.glsl
3cb7c7e89baa9eb5648992fe211ce620e156bd6a
[dragonblocks_alpha.git] / shaders / gui / image / fragment.glsl
1 in vec2 fragmentTextureCoords;
2
3 out vec4 outColor;
4
5 uniform sampler2D texture0;
6
7 void main()
8 {
9         outColor = texture(texture0, fragmentTextureCoords);
10 }