
org.saintandreas.gl.shaders.CubeMap.fs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glamour-lwjgl Show documentation
Show all versions of glamour-lwjgl Show documentation
Class wrappers for geometry, texture, shaders, etc
The newest version!
#version 330
uniform samplerCube cubemap;
in vec3 texCoord;
out vec4 fragColor;
void main (void) {
fragColor = texture(cubemap, texCoord);
//fragColor = vec4(texCoord, 1);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy