8 lines
107 B
Plaintext
8 lines
107 B
Plaintext
float4 vs_main(float4 pos : POSITION) : SV_POSITION
|
|
{
|
|
float x = 5.0f;
|
|
x = 7.0f;
|
|
return pos;
|
|
}
|
|
|