mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-14 13:51:04 +00:00
ffefbcd9f3
Closes #3302.
14 lines
218 B
GLSL
14 lines
218 B
GLSL
#version 450
|
|
|
|
layout(binding = 0) uniform sampler2DArrayShadow s2da;
|
|
|
|
layout(location = 0) out vec4 c_out;
|
|
|
|
layout(location = 0) in vec4 tc;
|
|
|
|
void main()
|
|
{
|
|
float c = textureLod(s2da, tc, 0);
|
|
c_out = vec4(c);
|
|
}
|