7 lines
79 B
HLSL
7 lines
79 B
HLSL
|
[numthreads(1, 1, 1)]
|
||
|
void main() {
|
||
|
int3 v = int3(0, 0, 0);
|
||
|
v;
|
||
|
return;
|
||
|
}
|