Files
NazaraEngine/include/Nazara/Utility/UniformBuffer.inl
SirLynix 99c8027fd0 Remove .inl inclusion of their .hpp files
It has no real purpose and is breaking Clang parsing
2023-03-10 13:33:10 +01:00

27 lines
582 B
C++

// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <memory>
#include <Nazara/Utility/Debug.hpp>
namespace Nz
{
inline const std::shared_ptr<Buffer>& UniformBuffer::GetBuffer() const
{
return m_buffer;
}
inline UInt64 UniformBuffer::GetEndOffset() const
{
return m_endOffset;
}
inline UInt64 UniformBuffer::GetStartOffset() const
{
return m_startOffset;
}
}
#include <Nazara/Utility/DebugOff.hpp>