qt6windows7/tests/manual/rhi/cubemap_render/cubemap_sample.frag

11 lines
209 B
GLSL
Raw Normal View History

2023-10-30 06:33:08 +08:00
#version 440
layout(location = 0) in vec3 v_coord;
layout(location = 0) out vec4 fragColor;
layout(binding = 1) uniform samplerCube tex;
void main()
{
fragColor = vec4(texture(tex, v_coord).rgb, 1.0);
}