qtk/resources/skybox/skybox.frag

9 lines
131 B
GLSL
Raw Permalink Normal View History

2021-09-03 16:56:57 +00:00
#version 330
uniform samplerCube uTexture;
varying vec3 vTexCoord;
void main()
{
gl_FragColor = texture(uTexture, vTexCoord);
}