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

◆ VKShaderModule() [3/3]

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

Definition at line 95 of file VKShaderModule.cpp.

96 : m_module(other.m_module)
97 , m_stage(other.m_stage)
98 , m_entry_point(std::move(other.m_entry_point))
99 , m_reflection(std::move(other.m_reflection))
100 , m_spirv_code(std::move(other.m_spirv_code))
101 , m_preserve_spirv(other.m_preserve_spirv)
102 , m_specialization_map(std::move(other.m_specialization_map))
103 , m_specialization_entries(std::move(other.m_specialization_entries))
104 , m_specialization_data(std::move(other.m_specialization_data))
105 , m_specialization_info(other.m_specialization_info)
106{
107 other.m_module = nullptr;
108}
vk::SpecializationInfo m_specialization_info
std::vector< vk::SpecializationMapEntry > m_specialization_entries
vk::ShaderStageFlagBits m_stage
std::vector< uint32_t > m_specialization_data
std::unordered_map< uint32_t, uint32_t > m_specialization_map
std::vector< uint32_t > m_spirv_code
Preserved SPIR-V (if enabled)