15 lines
152 B
HLSL
15 lines
152 B
HLSL
|
static const float myconst = 2.5f;
|
||
|
|
||
|
float x_100() {
|
||
|
return (myconst + myconst);
|
||
|
}
|
||
|
|
||
|
void main_1() {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
main_1();
|
||
|
return;
|
||
|
}
|