shader.fragment.glsl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pixel-artillery-2d Show documentation
Show all versions of pixel-artillery-2d Show documentation
A library for 2D OpenGL and OpenAL support based on LWJGL 3
The newest version!
#version 410
in vec2 outTextureCoordinate;
uniform sampler2D textureSampler0;
out vec4 color;
void main()
{
color = texture(textureSampler0, outTextureCoordinate);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy