1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
Voxel-Test/VBO/res/shaders/skybox.frag
2015-07-15 17:19:40 +02:00

10 lines
No EOL
151 B
GLSL

#version 330
out vec4 fragColor;
uniform samplerCube cubeMap;
in vec3 position;
void main(void){
fragColor = texture(cubeMap, position);
}