49 lines
1.5 KiB
C++
49 lines
1.5 KiB
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
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_UTILITY_UNIFORMBUFFER_HPP
|
|
#define NAZARA_UTILITY_UNIFORMBUFFER_HPP
|
|
|
|
#include <NazaraUtils/Prerequisites.hpp>
|
|
#include <Nazara/Utility/Buffer.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
class NAZARA_UTILITY_API UniformBuffer
|
|
{
|
|
public:
|
|
UniformBuffer(std::shared_ptr<Buffer> buffer);
|
|
UniformBuffer(std::shared_ptr<Buffer> buffer, UInt64 offset, UInt64 size);
|
|
UniformBuffer(UInt64 size, BufferUsageFlags usage, const BufferFactory& bufferFactory, const void* initialData = nullptr);
|
|
UniformBuffer(const UniformBuffer&) = default;
|
|
UniformBuffer(UniformBuffer&&) noexcept = default;
|
|
~UniformBuffer() = default;
|
|
|
|
bool Fill(const void* data, UInt64 offset, UInt64 size);
|
|
|
|
inline const std::shared_ptr<Buffer>& GetBuffer() const;
|
|
inline UInt64 GetEndOffset() const;
|
|
inline UInt64 GetStartOffset() const;
|
|
|
|
void* Map(UInt64 offset = 0, UInt64 size = 0);
|
|
void* Map(UInt64 offset = 0, UInt64 size = 0) const;
|
|
|
|
void Unmap() const;
|
|
|
|
UniformBuffer& operator=(const UniformBuffer&) = default;
|
|
UniformBuffer& operator=(UniformBuffer&&) noexcept = default;
|
|
|
|
private:
|
|
std::shared_ptr<Buffer> m_buffer;
|
|
UInt64 m_endOffset;
|
|
UInt64 m_startOffset;
|
|
};
|
|
}
|
|
|
|
#include <Nazara/Utility/UniformBuffer.inl>
|
|
|
|
#endif // NAZARA_UTILITY_UNIFORMBUFFER_HPP
|