Remove dumbass type constraint crap.

This commit is contained in:
2024-12-29 23:39:57 +01:00
parent 90fb1a035e
commit f13508262b
7 changed files with 65 additions and 341 deletions

View File

@@ -6,6 +6,6 @@
float
got:
res : float2 = float2(2.0, 2.0);
res : float2 = float2(2.0, 2.0)


View File

@@ -2,5 +2,5 @@ vertex main :: (pos : float4 @position) -> float4 @position {
res : float2 = float2(2.0, 2.0);
foo : float = 1.0;
result : float4 = float4(1.0, foo * res, 0.0, 1.0);
return result;
return float4(1,1,1,1);
}