7 lines
106 B
Plaintext
7 lines
106 B
Plaintext
vertex main :: (pos : float4 @position) -> float4 @position {
|
|
x : float = 5.0;
|
|
x = 7.0;
|
|
|
|
return pos;
|
|
}
|