mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-09 22:00:05 +00:00
f1e8555801
Unlike GLSL, child structs do not inherit matrix layouts.
30 lines
327 B
GLSL
30 lines
327 B
GLSL
#version 450
|
|
|
|
struct Foo
|
|
{
|
|
mat4 v;
|
|
mat4 w;
|
|
};
|
|
|
|
struct NonFoo
|
|
{
|
|
mat4 v;
|
|
mat4 w;
|
|
};
|
|
|
|
layout(std140, binding = 0) uniform UBO
|
|
{
|
|
layout(column_major) Foo foo;
|
|
};
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
layout(location = 0) in vec4 vUV;
|
|
|
|
void main()
|
|
{
|
|
NonFoo f;
|
|
f.v = foo.v;
|
|
f.w = foo.w;
|
|
FragColor = f.v * (f.w * vUV);
|
|
}
|