12 lines
128 B
HLSL
12 lines
128 B
HLSL
|
void func(inout int pointer) {
|
||
|
pointer = 42;
|
||
|
}
|
||
|
|
||
|
static int P = 0;
|
||
|
|
||
|
[numthreads(1, 1, 1)]
|
||
|
void main() {
|
||
|
func(P);
|
||
|
return;
|
||
|
}
|