mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 09:00:44 +00:00
Fix error message duplicated in vulkan object create macro
This commit is contained in:
@@ -387,8 +387,7 @@ static void create(WrappedVulkan *driver, const char *objName, const int line, V
|
||||
|
||||
// utility macro that lets us check for VkResult failures inside the utility helpers while
|
||||
// preserving context from outside
|
||||
#define CREATE_OBJECT(obj, ...) \
|
||||
create(driver, "Failed to create vulkan object " #obj, __LINE__, &obj, __VA_ARGS__)
|
||||
#define CREATE_OBJECT(obj, ...) create(driver, #obj, __LINE__, &obj, __VA_ARGS__)
|
||||
|
||||
VulkanDebugManager::VulkanDebugManager(WrappedVulkan *driver)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user