Merge branch 'main' of git.nbross.com:nielsbross/Ink-Shader-Language

# Conflicts:
#	AST.jai
#	Check.jai
#	module.jai
This commit is contained in:
2025-09-17 12:32:47 +02:00
18 changed files with 171 additions and 94 deletions

12
test/parse/ifdefs.golden Normal file
View File

@@ -0,0 +1,12 @@
(program
(#if Env.Skinning
(fun vertex vs_skinning_main
[]
(:= x float 5))
(#if Env.UV
(fun vertex vs_texture_mapping_main
[]
(:= x float2 (float2 2 2)))))
(fun pixel ps_main
[]))