// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com) // This file is part of the "Nazara Engine - OpenGL renderer" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_OPENGLRENDERER_OPENGLUPLOADPOOL_HPP #define NAZARA_OPENGLRENDERER_OPENGLUPLOADPOOL_HPP #include #include #include #include #include #include #include namespace Nz { class NAZARA_OPENGLRENDERER_API OpenGLUploadPool : public UploadPool { public: inline OpenGLUploadPool(UInt64 blockSize); OpenGLUploadPool(const OpenGLUploadPool&) = delete; OpenGLUploadPool(OpenGLUploadPool&&) noexcept = default; ~OpenGLUploadPool() = default; Allocation& Allocate(UInt64 size) override; Allocation& Allocate(UInt64 size, UInt64 alignment) override; void Reset() override; OpenGLUploadPool& operator=(const OpenGLUploadPool&) = delete; OpenGLUploadPool& operator=(OpenGLUploadPool&&) = delete; private: static constexpr std::size_t AllocationPerBlock = 2048; using AllocationBlock = std::array; struct Block { std::vector memory; UInt64 freeOffset = 0; UInt64 size; }; std::size_t m_nextAllocationIndex; std::vector> m_allocationBlocks; std::vector m_blocks; UInt64 m_blockSize; }; } #include #endif // NAZARA_OPENGLRENDERER_OPENGLUPLOADPOOL_HPP