MoonWorksGraphicsTests/Common/Content/Shaders/Source/TexturedQuad2DArray.frag

18 lines
301 B
GLSL
Raw Normal View History

2024-03-01 23:03:29 +00:00
#version 450
layout (location = 0) in vec2 TexCoord;
layout (location = 0) out vec4 FragColor;
2024-06-06 05:47:06 +00:00
layout(set = 2, binding = 0) uniform sampler2DArray Sampler;
2024-03-01 23:03:29 +00:00
2024-06-06 05:47:06 +00:00
layout (set = 3, binding = 0) uniform UniformBlock
2024-03-01 23:03:29 +00:00
{
float depth;
};
void main()
{
FragColor = texture(Sampler, vec3(TexCoord, depth));
}