9 lines
113 B
Plaintext
9 lines
113 B
Plaintext
void vs_main()
|
|
{
|
|
float x = 2;
|
|
float y = 5;
|
|
float z = 10;
|
|
float w = x * y + y * z - x / y * x;
|
|
}
|
|
|