Vulkan: Use a generic class helper for all device objects

This greatly reduce the amount of code required for wrappers around
Vulkan Objects


Former-commit-id: 86d366c594cf51cefdf656d04a87180183f5aaf5
This commit is contained in:
Lynix
2016-05-14 14:46:15 +02:00
parent 6fa8b38976
commit b37efa53bb
6 changed files with 133 additions and 112 deletions

View File

@@ -3,8 +3,6 @@
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Vulkan/VkSemaphore.hpp>
#include <Nazara/Core/Error.hpp>
#include <Nazara/Vulkan/VkDevice.hpp>
#include <Nazara/Vulkan/Debug.hpp>
namespace Nz
@@ -12,34 +10,10 @@ namespace Nz
namespace Vk
{
inline Semaphore::Semaphore(Device& device) :
m_device(device),
m_semaphore(VK_NULL_HANDLE)
DeviceObject(device)
{
}
inline Semaphore::~Semaphore()
{
Destroy();
}
inline bool Semaphore::Create(const VkSemaphoreCreateInfo& createInfo, const VkAllocationCallbacks* allocator)
{
m_lastErrorCode = m_device.vkCreateSemaphore(m_device, &createInfo, allocator, &m_semaphore);
if (m_lastErrorCode != VkResult::VK_SUCCESS)
{
NazaraError("Failed to create Vulkan semaphore");
return false;
}
// Store the allocator to access them when needed
if (allocator)
m_allocator = *allocator;
else
m_allocator.pfnAllocation = nullptr;
return true;
}
inline bool Semaphore::Create(VkSemaphoreCreateFlags flags, const VkAllocationCallbacks* allocator)
{
VkSemaphoreCreateInfo createInfo =
@@ -52,20 +26,14 @@ namespace Nz
return Create(createInfo, allocator);
}
inline void Semaphore::Destroy()
VkResult Semaphore::CreateHelper(Device& device, const VkSemaphoreCreateInfo* createInfo, const VkAllocationCallbacks* allocator, VkSemaphore* handle)
{
if (m_semaphore != VK_NULL_HANDLE)
m_device.vkDestroySemaphore(m_device, m_semaphore, (m_allocator.pfnAllocation) ? &m_allocator : nullptr);
return device.vkCreateSemaphore(device, createInfo, allocator, handle);
}
inline VkResult Semaphore::GetLastErrorCode() const
void Semaphore::DestroyHelper(Device& device, VkSemaphore handle, const VkAllocationCallbacks* allocator)
{
return m_lastErrorCode;
}
inline Semaphore::operator VkSemaphore()
{
return m_semaphore;
return device.vkDestroySemaphore(device, handle, allocator);
}
}
}