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

12 lines
256 B
Plaintext

scope (global) [
[foo] : () -> int
[vertex__vs_main] : ()
[bar] : () -> float
scope (foo) []
scope (bar) []
scope (vertex__vs_main) [
[x] : int
[y] : float
]
]