10 lines
126 B
HLSL
10 lines
126 B
HLSL
|
[numthreads(1, 1, 1)]
|
||
|
void main() {
|
||
|
int i = 0;
|
||
|
i = 123;
|
||
|
const int x_10 = i;
|
||
|
const int x_12 = (x_10 + 1);
|
||
|
return;
|
||
|
}
|
||
|
|