Add double access shader test

This commit is contained in:
2024-09-20 12:48:47 +02:00
parent fca325b761
commit 3f93e1a92d

7
test/double_access.shd Normal file
View File

@@ -0,0 +1,7 @@
p :: properties {
v : float2;
}
vertex main ::() {
x : float = p.v.x / p.v.y;
}