48 lines
897 B
C++
48 lines
897 B
C++
// Copyright (C) 2021 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 <Nazara/Utility/Buffer.hpp>
|
|
#include <memory>
|
|
#include <Nazara/Utility/Debug.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
inline AbstractBuffer* Buffer::GetImpl() const
|
|
{
|
|
return m_impl.get();
|
|
}
|
|
|
|
inline UInt32 Buffer::GetSize() const
|
|
{
|
|
return m_size;
|
|
}
|
|
|
|
inline DataStorage Buffer::GetStorage() const
|
|
{
|
|
return m_impl->GetStorage();
|
|
}
|
|
|
|
inline BufferType Buffer::GetType() const
|
|
{
|
|
return m_type;
|
|
}
|
|
|
|
inline BufferUsageFlags Buffer::GetUsage() const
|
|
{
|
|
return m_usage;
|
|
}
|
|
|
|
inline bool Buffer::HasStorage(DataStorage storage) const
|
|
{
|
|
return GetStorage() == storage;
|
|
}
|
|
|
|
inline bool Buffer::IsValid() const
|
|
{
|
|
return m_impl != nullptr;
|
|
}
|
|
}
|
|
|
|
#include <Nazara/Utility/DebugOff.hpp>
|