SPIRV-Cross/shaders-msl-no-opt/frag/subpass-input-attachment-index-fallback.msl23.framebuffer-fetch.frag
Chip Davis c20d5945a2 MSL: Allow framebuffer fetch on Mac in MSL 2.3.
Another Apple GPU feature that will now be supported on Apple Silicon
Macs.
2020-10-29 10:50:59 -05:00

10 lines
183 B
GLSL

#version 450
layout(binding = 4, input_attachment_index = 1) uniform subpassInput uInput;
layout(location = 1) out vec4 FragColor;
void main()
{
FragColor = subpassLoad(uInput);
}