7 lines
121 B
Plaintext
7 lines
121 B
Plaintext
vertex main :: () -> float4 @position {
|
|
arr : [16].float4;
|
|
arr[0] = float4(1, 1, 1, 1);
|
|
pos := arr[1];
|
|
return pos;
|
|
}
|