Files
Ink-Shader-Language/test/codegen/struct_within_struct.golden
2024-06-09 21:34:23 +02:00

21 lines
141 B
Plaintext

struct Foo;
struct Bar;
struct Foo
{
float4 color;
}
struct Bar
{
Foo t;
}
void vs_main()
{
Foo f;
Bar b;
b.t = f;
}