@@ -12745,10 +12745,10 @@ float4 ps_main() : SV_Target {
1274512745 InputMatrixSRVResources[I]->GetGPUVirtualAddress();
1274612746
1274712747 // Get command list interface and perform conversion
12748- CComPtr<ID3D12GraphicsCommandList11> CommandList11 ;
12748+ CComPtr<ID3D12GraphicsCommandListPreview> CommandListPreview ;
1274912749 VERIFY_SUCCEEDED(CommandList->QueryInterface(
12750- __uuidof(ID3D12GraphicsCommandList11 ), (void **)&CommandList11 ));
12751- CommandList11 ->ConvertLinearAlgebraMatrix(&ConvertInfo, 1);
12750+ __uuidof(ID3D12GraphicsCommandListPreview ), (void **)&CommandListPreview ));
12751+ CommandListPreview ->ConvertLinearAlgebraMatrix(&ConvertInfo, 1);
1275212752
1275312753 // This increments BaseHandle
1275412754 CreateRawSRV(D3DDevice, BaseHandle, SRVSize / sizeof(int32_t),
@@ -13376,10 +13376,10 @@ float4 ps_main() : SV_Target {
1337613376 ConvertInfo.DataDesc = DataDesc;
1337713377
1337813378 // Get command list interface and perform conversion
13379- CComPtr<ID3D12GraphicsCommandList11> CommandList11 ;
13379+ CComPtr<ID3D12GraphicsCommandListPreview> CommandListPreview ;
1338013380 VERIFY_SUCCEEDED(CommandList->QueryInterface(
13381- __uuidof(ID3D12GraphicsCommandList11 ), (void **)&CommandList11 ));
13382- CommandList11 ->ConvertLinearAlgebraMatrix(&ConvertInfo, 1);
13381+ __uuidof(ID3D12GraphicsCommandListPreview ), (void **)&CommandListPreview ));
13382+ CommandListPreview ->ConvertLinearAlgebraMatrix(&ConvertInfo, 1);
1338313383
1338413384 // This increments baseHandle
1338513385 if ((ConvertInfo.DestInfo.DestSize % 4) != 0) {
@@ -13527,10 +13527,10 @@ float4 ps_main() : SV_Target {
1352713527 ConvertedMatrixResource->GetGPUVirtualAddress();
1352813528
1352913529 // Get command list interface and perform conversion
13530- CComPtr<ID3D12GraphicsCommandList11> CommandList11 ;
13530+ CComPtr<ID3D12GraphicsCommandListPreview> CommandListPreview ;
1353113531 VERIFY_SUCCEEDED(CommandList->QueryInterface(
13532- __uuidof(ID3D12GraphicsCommandList11 ), (void **)&CommandList11 ));
13533- CommandList11 ->ConvertLinearAlgebraMatrix(&ConvertInfo, 1);
13532+ __uuidof(ID3D12GraphicsCommandListPreview ), (void **)&CommandListPreview ));
13533+ CommandListPreview ->ConvertLinearAlgebraMatrix(&ConvertInfo, 1);
1353413534 }
1353513535
1353613536 RecordTransitionBarrier(CommandList, MatrixRowMajorResource,
0 commit comments