MayaFlux 0.3.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ VKInstance() [3/3]

MayaFlux::Core::VKInstance::VKInstance ( VKInstance &&  other)
noexcept

Definition at line 18 of file VKInstance.cpp.

19 : m_instance(other.m_instance)
20 , m_debug_messenger(other.m_debug_messenger)
21 , m_validation_enabled(other.m_validation_enabled)
22{
23 other.m_instance = nullptr;
24 other.m_debug_messenger = nullptr;
25}
bool m_validation_enabled
Flag to indicate if validation layers are enabled.
vk::Instance m_instance
Vulkan instance handle.
vk::DebugUtilsMessengerEXT m_debug_messenger
Debug messenger for validation layers.