#include <string>
#include "flutter/fml/build_config.h"
#include "flutter/fml/logging.h"
#include <vulkan/vulkan.h>
Go to the source code of this file.
◆ VK_CALL_LOG
#define VK_CALL_LOG |
( |
|
expression, |
|
|
|
severity |
|
) |
| |
Value: ({ \
__typeof__(expression) _rc = (expression); \
FML_LOG(severity) << "Vulkan call '" << #expression \
<< "' failed with error " \
} \
_rc; \
})
std::string VulkanResultToString(VkResult result)
Definition at line 34 of file vulkan_interface.h.
◆ VK_CALL_LOG_ERROR
◆ VK_CALL_LOG_FATAL