Don't full replay vkCmdExecuteCommands if we're only doing a single draw

This commit is contained in:
baldurk
2019-09-11 09:36:36 +01:00
parent 173a2684e5
commit 07269b9693
@@ -3340,7 +3340,7 @@ bool WrappedVulkan::Serialise_vkCmdExecuteCommands(SerialiserType &ser, VkComman
{
// do nothing, don't bother with the logic below
}
else if(m_FirstEventID == m_LastEventID && !fullRecord)
else if(m_FirstEventID == m_LastEventID)
{
#if ENABLED(VERBOSE_PARTIAL_REPLAY)
RDCDEBUG("ExecuteCommands no OnlyDraw %u", m_FirstEventID);