13 lines
131 B
HLSL
13 lines
131 B
HLSL
|
[numthreads(1, 1, 1)]
|
||
|
void unused_entry_point() {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
int i(int x) {
|
||
|
return -(x);
|
||
|
}
|
||
|
|
||
|
int4 vi(int4 x) {
|
||
|
return -(x);
|
||
|
}
|