14 lines
160 B
HLSL
14 lines
160 B
HLSL
|
static bool x_1 = false;
|
||
|
static int x_2 = 0;
|
||
|
static uint x_3 = 0u;
|
||
|
static float x_4 = 0.0f;
|
||
|
|
||
|
void main_1() {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
main_1();
|
||
|
return;
|
||
|
}
|