dragonblocks_alpha/assets/shaders/sky/sun/fragment.glsl

11 lines
161 B
GLSL
Executable File

in vec2 fragmentTextureCoordinates;
out vec4 outColor;
uniform sampler2D texture0;
void main()
{
outColor = texture(texture0, fragmentTextureCoordinates);
}