Files
Ink-Shader-Language/test/struct_within_struct.ink

14 lines
120 B
Plaintext

Foo :: struct {
color : float4;
}
Bar :: struct {
t : Foo;
}
vertex main :: () {
f : Foo;
b : Bar;
b.t = f;
}