10 lines
163 B
GLSL
10 lines
163 B
GLSL
|
|
#version 460 core
|
||
|
|
in vec3 v_texcoord;
|
||
|
|
|
||
|
|
out vec4 f_color;
|
||
|
|
|
||
|
|
uniform samplerCube cubemap_texture;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
f_color = texture(cubemap_texture, v_texcoord);
|
||
|
|
}
|