mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[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:
parent
0d018451fd
commit
91c6793b55
4 changed files with 8 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -472,7 +472,7 @@ namespace dxvk {
|
|||
cFrameId = m_frameId
|
||||
] (DxvkContext* ctx) {
|
||||
ctx->beginLatencyTracking(cLatency, cFrameId + 1u);
|
||||
});
|
||||
}, true);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6129,7 +6129,7 @@ namespace dxvk {
|
|||
] (DxvkContext* ctx) {
|
||||
if (cTracker && cTracker->needsAutoMarkers())
|
||||
ctx->beginLatencyTracking(cTracker, cFrameId);
|
||||
});
|
||||
}, true);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue