A bunch of array fixes and some buffer stuff that doesn't quite work yet

This commit is contained in:
2025-09-24 14:04:50 +02:00
parent 50a404984d
commit 940b58331d
18 changed files with 261 additions and 137 deletions

11
test/buffers.ink Normal file
View File

@@ -0,0 +1,11 @@
property_buffer :: buffer {
color : float4;
}
cbuffer :: constant_buffer {
color : float4;
}
pixel main :: (index : int) {
return property_buffer[index].color;
}