Add array parsing. Missing rest of pipeline.

This commit is contained in:
2024-07-13 11:45:44 +02:00
parent ae54f1374e
commit c5758bd023
5 changed files with 116 additions and 2 deletions

5
test/arrays.shd Normal file
View File

@@ -0,0 +1,5 @@
vertex main :: () -> float4 @position {
arr : [16].float4;
arr[0] = float4(1,1,1);
return arr[0];
}