21 lines
221 B
HLSL
21 lines
221 B
HLSL
|
void max_ce7c30() {
|
||
|
int res = max(1, 1);
|
||
|
}
|
||
|
|
||
|
void vertex_main() {
|
||
|
max_ce7c30();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
void fragment_main() {
|
||
|
max_ce7c30();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
[numthreads(1, 1, 1)]
|
||
|
void compute_main() {
|
||
|
max_ce7c30();
|
||
|
return;
|
||
|
}
|
||
|
|