Files
NazaraEngine/include/Nazara/VulkanRenderer/VulkanBuffer.inl
Jérôme Leclercq 29786765c6 Big buffer refactor
Replaced RenderBuffer class, replaced AbstractBuffer by Buffer
2022-01-23 00:05:08 +01:00

17 lines
442 B
C++

// 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
#include <Nazara/VulkanRenderer/VulkanBuffer.hpp>
#include <Nazara/VulkanRenderer/Debug.hpp>
namespace Nz
{
inline VkBuffer VulkanBuffer::GetBuffer() const
{
return m_buffer;
}
}
#include <Nazara/VulkanRenderer/DebugOff.hpp>