// Copyright (C) 2022 Jérôme "Lynix" Leclercq (lynix680@gmail.com) // This file is part of the "Nazara Engine - Vulkan renderer" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_VULKANRENDERER_WRAPPER_DEVICEOBJECT_HPP #define NAZARA_VULKANRENDERER_WRAPPER_DEVICEOBJECT_HPP #include #include #include #include #include namespace Nz::Vk { template class DeviceObject { public: DeviceObject(); DeviceObject(const DeviceObject&) = delete; DeviceObject(DeviceObject&& object) noexcept; ~DeviceObject(); bool Create(Device& device, const CreateInfo& createInfo, const VkAllocationCallbacks* allocator = nullptr); void Destroy(); bool IsValid() const; Device* GetDevice() const; VkResult GetLastErrorCode() const; template void SetDebugName(T&& name); DeviceObject& operator=(const DeviceObject&) = delete; DeviceObject& operator=(DeviceObject&& object) noexcept; operator VkType() const; protected: MovablePtr m_device; VkAllocationCallbacks m_allocator; VkType m_handle; mutable VkResult m_lastErrorCode; }; } #include #endif // NAZARA_VULKANRENDERER_WRAPPER_DEVICEOBJECT_HPP