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

12 lines
145 B
Plaintext

(program
(struct Foo
[(:= color float4)])
(struct Bar
[(:= t Foo)])
(fun vertex vs_main
[]
(:= f Foo)
(:= b Bar)
(= b.t f)))