11 lines
144 B
HLSL
11 lines
144 B
HLSL
|
void main_1() {
|
||
|
const float2 x_1 = float2(50.0f, 60.0f);
|
||
|
const float2 x_2 = fwidth(x_1);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
main_1();
|
||
|
return;
|
||
|
}
|