mirror of
https://github.com/4sval/FModel.git
synced 2026-04-24 14:59:29 -05:00
13 lines
144 B
GLSL
13 lines
144 B
GLSL
#version 460 core
|
|
|
|
in vec3 fPos;
|
|
|
|
uniform samplerCube cubemap;
|
|
|
|
out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = texture(cubemap, fPos);
|
|
}
|