7 lines
109 B
HLSL
7 lines
109 B
HLSL
|
[numthreads(1, 1, 1)]
|
||
|
void f() {
|
||
|
const uint3 a = uint3(1u, 2u, 3u);
|
||
|
const int3 b = asint(a);
|
||
|
return;
|
||
|
}
|