8 lines
90 B
Plaintext
8 lines
90 B
Plaintext
void vs_main()
|
|
{
|
|
float x = 5.0f;
|
|
float y = 3000.0f;
|
|
float z = (y * y) + x;
|
|
}
|
|
|