mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
Make sure there's a log line at minimum whenever an API is initialised
This commit is contained in:
@@ -250,7 +250,7 @@ private:
|
||||
}
|
||||
else if(SUCCEEDED(ret))
|
||||
{
|
||||
RDCDEBUG("succeeded.");
|
||||
RDCLOG("Created wrapped D3D11 device.");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -235,6 +235,11 @@ VkResult WrappedVulkan::vkCreateInstance(
|
||||
ObjDisp(m_Instance)->CreateDebugReportCallbackEXT(Unwrap(m_Instance), &debugInfo, NULL, &m_DbgMsgCallback);
|
||||
}
|
||||
|
||||
if(ret == VK_SUCCESS)
|
||||
{
|
||||
RDCLOG("Initialised capture layer in Vulkan instance.");
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user