SPIRV-Cross/shaders-msl/masking/write-outputs-block.mask-location-0.vert
2021-04-19 12:10:49 +02:00

17 lines
157 B
GLSL

#version 450
layout(location = 0) out V
{
vec4 a;
vec4 b;
vec4 c;
vec4 d;
};
void main()
{
gl_Position = vec4(1.0);
a = vec4(2.0);
b = vec4(3.0);
}