Fix a copy-paste error in D3D12_Compute_Only test

This commit is contained in:
baldurk
2022-06-24 13:34:46 +01:00
parent 4d9f53427e
commit 1928315de5
+1 -1
View File
@@ -114,7 +114,7 @@ void main()
MakeUAV(bufin).Format(DXGI_FORMAT_R32G32B32A32_UINT).CreateClearCPU(0), bufin, a, 1, &rect);
cmd->ClearUnorderedAccessViewUint(
MakeUAV(bufout).Format(DXGI_FORMAT_R32G32B32A32_UINT).CreateGPU(1),
MakeUAV(bufout).Format(DXGI_FORMAT_R32G32B32A32_UINT).CreateClearCPU(1), bufin, b, 1,
MakeUAV(bufout).Format(DXGI_FORMAT_R32G32B32A32_UINT).CreateClearCPU(1), bufout, b, 1,
&rect);
setMarker(cmd, "Pre-Dispatch");