Lines Matching defs:rhs

428 PipelineLayoutWrapper& PipelineLayoutWrapper::operator=	(PipelineLayoutWrapper&& rhs)
430 m_pipelineConstructionType = rhs.m_pipelineConstructionType;
431 m_vk = rhs.m_vk;
432 m_device = rhs.m_device;
433 m_flags = rhs.m_flags;
434 m_setLayoutCount = rhs.m_setLayoutCount;
435 m_setLayouts = std::move(rhs.m_setLayouts);
436 m_pushConstantRangeCount = rhs.m_pushConstantRangeCount;
437 m_pushConstantRanges = std::move(rhs.m_pushConstantRanges);
438 m_pipelineLayout = rhs.m_pipelineLayout;
864 RenderPassWrapper::RenderPassWrapper (RenderPassWrapper&& rhs) noexcept
865 : m_pipelineConstructionType (rhs.m_pipelineConstructionType)
866 , m_renderPass (rhs.m_renderPass)
867 , m_framebuffer (rhs.m_framebuffer)
869 , m_subpasses (std::move(rhs.m_subpasses))
870 , m_dependencies (std::move(rhs.m_dependencies))
871 , m_attachments (std::move(rhs.m_attachments))
872 , m_images (std::move(rhs.m_images))
873 , m_imageViews (std::move(rhs.m_imageViews))
874 , m_clearValues (std::move(rhs.m_clearValues))
875 , m_layouts (std::move(rhs.m_layouts))
876 , m_activeSubpass (rhs.m_activeSubpass)
877 , m_renderingInfo (rhs.m_renderingInfo)
878 , m_layers (rhs.m_layers)
879 , m_viewMasks (std::move(rhs.m_viewMasks))
880 , m_secondaryCommandBuffers (rhs.m_secondaryCommandBuffers)
886 RenderPassWrapper& RenderPassWrapper::operator= (RenderPassWrapper&& rhs) noexcept
888 m_pipelineConstructionType = rhs.m_pipelineConstructionType;
889 m_renderPass = rhs.m_renderPass;
890 m_framebuffer = rhs.m_framebuffer;
892 m_subpasses = std::move(rhs.m_subpasses);
893 m_dependencies = std::move(rhs.m_dependencies);
894 m_attachments = std::move(rhs.m_attachments);
895 m_images = std::move(rhs.m_images);
896 m_imageViews = std::move(rhs.m_imageViews);
897 m_clearValues = std::move(rhs.m_clearValues);
898 m_layouts = std::move(rhs.m_layouts);
899 m_activeSubpass = rhs.m_activeSubpass;
900 m_renderingInfo = rhs.m_renderingInfo;
901 m_layers = rhs.m_layers;
902 m_viewMasks = std::move(rhs.m_viewMasks);
903 m_secondaryCommandBuffers = rhs.m_secondaryCommandBuffers;
1714 ShaderWrapper::ShaderWrapper (const ShaderWrapper& rhs) noexcept
1715 : m_vk (rhs.m_vk)
1716 , m_device (rhs.m_device)
1717 , m_binary (rhs.m_binary)
1718 , m_moduleCreateFlags (rhs.m_moduleCreateFlags)
1719 , m_layout (rhs.m_layout)
1720 , m_specializationInfo (rhs.m_specializationInfo)
1722 , m_shaderCreateFlags (rhs.m_shaderCreateFlags)
1723 , m_binaryDataSize (rhs.m_binaryDataSize)
1724 , m_binaryData (rhs.m_binaryData)
1728 ShaderWrapper& ShaderWrapper::operator= (const ShaderWrapper& rhs) noexcept
1730 m_vk = rhs.m_vk;
1731 m_device = rhs.m_device;
1732 m_binary = rhs.m_binary;
1733 m_moduleCreateFlags = rhs.m_moduleCreateFlags;
1734 m_layout = rhs.m_layout;
1735 m_specializationInfo = rhs.m_specializationInfo;
1737 m_shaderCreateFlags = rhs.m_shaderCreateFlags;
1738 m_binaryDataSize = rhs.m_binaryDataSize;
1739 m_binaryData = rhs.m_binaryData;