[dxvk] Disallow flush for beginLatencyTracking's emitCs

Not sure if this does anything, but better be safe to correctly track when the first succeeding Cs will get executed.
This commit is contained in:
netborg 2025-02-28 08:37:11 +01:00
parent 0d018451fd
commit 91c6793b55
4 changed files with 8 additions and 6 deletions

View file

@ -1084,7 +1084,7 @@ namespace dxvk {
UINT SampleMask);
template<bool AllowFlush = !IsDeferred, typename Cmd>
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);
}

View file

@ -472,7 +472,7 @@ namespace dxvk {
cFrameId = m_frameId
] (DxvkContext* ctx) {
ctx->beginLatencyTracking(cLatency, cFrameId + 1u);
});
}, true);
}
}

View file

@ -6129,7 +6129,7 @@ namespace dxvk {
] (DxvkContext* ctx) {
if (cTracker && cTracker->needsAutoMarkers())
ctx->beginLatencyTracking(cTracker, cFrameId);
});
}, true);
}

View file

@ -1180,13 +1180,14 @@ namespace dxvk {
private:
template<bool AllowFlush = true, typename Cmd>
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);
}