Direct users to non-permanent way of enabling API validation for info

This commit is contained in:
baldurk
2023-12-05 10:59:07 +00:00
parent 6aa0263ace
commit 8cd1bf9eb1
5 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -1349,7 +1349,7 @@ RDResult WrappedID3D11DeviceContext::ReplayLog(CaptureState readType, uint32_t s
{
extra +=
"\n\nMore debugging information may be available by enabling API validation on "
"replay";
"replay via `File` -> `Open Capture with Options`";
}
if(m_pDevice->HasFatalError())
+2 -1
View File
@@ -1415,7 +1415,8 @@ RDResult WrappedID3D11Device::ReadLogInitialisation(RDCFile *rdc, bool storeStru
else
{
extra +=
"\n\nMore debugging information may be available by enabling API validation on replay";
"\n\nMore debugging information may be available by enabling API validation on replay "
"via `File` -> `Open Capture with Options`";
}
if(HasFatalError())
+1 -1
View File
@@ -1182,7 +1182,7 @@ RDResult WrappedID3D12CommandQueue::ReplayLog(CaptureState readType, uint32_t st
{
extra +=
"\n\nMore debugging information may be available by enabling API validation on "
"replay";
"replay via `File` -> `Open Capture with Options`";
}
if(m_pDevice->HasFatalError())
+2 -1
View File
@@ -4528,7 +4528,8 @@ RDResult WrappedID3D12Device::ReadLogInitialisation(RDCFile *rdc, bool storeStru
else
{
extra +=
"\n\nMore debugging information may be available by enabling API validation on replay";
"\n\nMore debugging information may be available by enabling API validation on replay "
"via `File` -> `Open Capture with Options`";
}
if(HasFatalError())
+4 -2
View File
@@ -2933,7 +2933,8 @@ RDResult WrappedVulkan::ReadLogInitialisation(RDCFile *rdc, bool storeStructured
else
{
extra +=
"\n\nMore debugging information may be available by enabling API validation on replay";
"\n\nMore debugging information may be available by enabling API validation on replay "
"via `File` -> `Open Capture with Options`";
}
SAFE_DELETE(sink);
@@ -3204,7 +3205,8 @@ RDResult WrappedVulkan::ContextReplayLog(CaptureState readType, uint32_t startEv
else
{
extra +=
"\n\nMore debugging information may be available by enabling API validation on replay";
"\n\nMore debugging information may be available by enabling API validation on replay "
"via `File` -> `Open Capture with Options`";
}
m_FailedReplayResult.message = rdcstr(m_FailedReplayResult.message) + extra;