diff --git a/src/d3d11/d3d11_context.h b/src/d3d11/d3d11_context.h index a2d6c3659..76b4d7811 100644 --- a/src/d3d11/d3d11_context.h +++ b/src/d3d11/d3d11_context.h @@ -1084,7 +1084,7 @@ namespace dxvk { UINT SampleMask); template - void EmitCs(Cmd&& command) { + void EmitCs(Cmd&& command, bool disableFlush=false ) { m_cmdData = nullptr; if (unlikely(!m_csChunk->push(command))) { @@ -1092,7 +1092,8 @@ namespace dxvk { m_csChunk = AllocCsChunk(); if constexpr (AllowFlush) - GetTypedContext()->ConsiderFlush(GpuFlushType::ImplicitWeakHint); + if (!disableFlush) + GetTypedContext()->ConsiderFlush(GpuFlushType::ImplicitWeakHint); m_csChunk->push(command); } diff --git a/src/d3d11/d3d11_swapchain.cpp b/src/d3d11/d3d11_swapchain.cpp index e2100eb8d..3eb636309 100644 --- a/src/d3d11/d3d11_swapchain.cpp +++ b/src/d3d11/d3d11_swapchain.cpp @@ -472,7 +472,7 @@ namespace dxvk { cFrameId = m_frameId ] (DxvkContext* ctx) { ctx->beginLatencyTracking(cLatency, cFrameId + 1u); - }); + }, true); } } diff --git a/src/d3d9/d3d9_device.cpp b/src/d3d9/d3d9_device.cpp index f704723db..8d4b86826 100644 --- a/src/d3d9/d3d9_device.cpp +++ b/src/d3d9/d3d9_device.cpp @@ -6129,7 +6129,7 @@ namespace dxvk { ] (DxvkContext* ctx) { if (cTracker && cTracker->needsAutoMarkers()) ctx->beginLatencyTracking(cTracker, cFrameId); - }); + }, true); } diff --git a/src/d3d9/d3d9_device.h b/src/d3d9/d3d9_device.h index 3a2a4184d..88a60a4b7 100644 --- a/src/d3d9/d3d9_device.h +++ b/src/d3d9/d3d9_device.h @@ -1180,13 +1180,14 @@ namespace dxvk { private: template - void EmitCs(Cmd&& command) { + void EmitCs(Cmd&& command, bool disableFlush=false) { if (unlikely(!m_csChunk->push(command))) { EmitCsChunk(std::move(m_csChunk)); m_csChunk = AllocCsChunk(); if constexpr (AllowFlush) - ConsiderFlush(GpuFlushType::ImplicitWeakHint); + if (!disableFlush) + ConsiderFlush(GpuFlushType::ImplicitWeakHint); m_csChunk->push(command); }