mirror of
https://github.com/alecthomas/chroma.git
synced 2025-02-13 13:28:27 +02:00
4 lines
112 B
Plaintext
4 lines
112 B
Plaintext
float4 vertex(float3 position) {
|
|
return mul(projection, mul(view, mul(model, float4(position, 1.0))));
|
|
}
|