You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
Texture3D<int> IN: register(t0);
|
|
RWTexture3D<uint> OUT: register(u1);
|
|
|
|
[numthreads(8,8,8)]
|
|
void main(uint3 tid: SV_DispatchThreadID)
|
|
{
|
|
OUT[tid] = IN[tid];
|
|
}
|