105 lines
3.3 KiB
C++
105 lines
3.3 KiB
C++
// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
|
|
// This file is part of the "Nazara Engine - Graphics module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_GRAPHICS_BAKEDFRAMEGRAPH_HPP
|
|
#define NAZARA_GRAPHICS_BAKEDFRAMEGRAPH_HPP
|
|
|
|
#include <NazaraUtils/Prerequisites.hpp>
|
|
#include <Nazara/Graphics/Config.hpp>
|
|
#include <Nazara/Graphics/FrameGraphStructs.hpp>
|
|
#include <Nazara/Graphics/FramePass.hpp>
|
|
#include <Nazara/Math/Rect.hpp>
|
|
#include <Nazara/Renderer/CommandBufferBuilder.hpp>
|
|
#include <Nazara/Renderer/CommandPool.hpp>
|
|
#include <Nazara/Renderer/Framebuffer.hpp>
|
|
#include <Nazara/Renderer/RenderPass.hpp>
|
|
#include <Nazara/Renderer/Texture.hpp>
|
|
#include <span>
|
|
#include <vector>
|
|
|
|
namespace Nz
|
|
{
|
|
class RenderResources;
|
|
|
|
class NAZARA_GRAPHICS_API BakedFrameGraph
|
|
{
|
|
friend class FrameGraph;
|
|
|
|
public:
|
|
BakedFrameGraph() = default;
|
|
BakedFrameGraph(const BakedFrameGraph&) = delete;
|
|
BakedFrameGraph(BakedFrameGraph&&) noexcept = default;
|
|
~BakedFrameGraph() = default;
|
|
|
|
void Execute(RenderResources& renderResources);
|
|
|
|
const std::shared_ptr<Texture>& GetAttachmentTexture(std::size_t attachmentIndex) const;
|
|
const std::shared_ptr<RenderPass>& GetRenderPass(std::size_t passIndex) const;
|
|
|
|
bool Resize(RenderResources& renderResources, std::span<Vector2ui> viewerTargetSizes);
|
|
|
|
BakedFrameGraph& operator=(const BakedFrameGraph&) = delete;
|
|
BakedFrameGraph& operator=(BakedFrameGraph&&) noexcept = default;
|
|
|
|
private:
|
|
struct PassData;
|
|
struct TextureData;
|
|
using AttachmentIdToTextureId = std::unordered_map<std::size_t /*attachmentId*/, std::size_t /*textureId*/>;
|
|
using PassIdToPhysicalPassIndex = std::unordered_map<std::size_t /*passId*/, std::size_t /*physicalPassId*/>;
|
|
|
|
BakedFrameGraph(std::vector<PassData> passes, std::vector<TextureData> textures, AttachmentIdToTextureId attachmentIdToTextureMapping, PassIdToPhysicalPassIndex passIdToPhysicalPassMapping);
|
|
|
|
struct TextureBarrier
|
|
{
|
|
std::size_t textureId;
|
|
MemoryAccessFlags dstAccessMask;
|
|
MemoryAccessFlags srcAccessMask;
|
|
PipelineStageFlags dstStageMask;
|
|
PipelineStageFlags srcStageMask;
|
|
TextureLayout newLayout;
|
|
TextureLayout oldLayout;
|
|
};
|
|
|
|
struct SubpassData
|
|
{
|
|
FramePass::CommandCallback commandCallback;
|
|
};
|
|
|
|
struct PassData
|
|
{
|
|
CommandBufferPtr commandBuffer;
|
|
std::shared_ptr<Framebuffer> framebuffer;
|
|
std::shared_ptr<RenderPass> renderPass;
|
|
std::string name;
|
|
std::vector<std::size_t> outputTextureIndices;
|
|
std::vector<CommandBufferBuilder::ClearValues> outputClearValues;
|
|
std::vector<SubpassData> subpasses;
|
|
std::vector<TextureBarrier> invalidationBarriers;
|
|
FramePass::ExecutionCallback executionCallback;
|
|
Recti renderRect;
|
|
bool forceCommandBufferRegeneration = true;
|
|
};
|
|
|
|
struct TextureData : FrameGraphTextureData
|
|
{
|
|
std::shared_ptr<Texture> texture;
|
|
};
|
|
|
|
std::shared_ptr<CommandPool> m_commandPool;
|
|
std::vector<PassData> m_passes;
|
|
std::vector<TextureData> m_textures;
|
|
std::vector<Vector2ui> m_viewerSizes;
|
|
AttachmentIdToTextureId m_attachmentToTextureMapping;
|
|
PassIdToPhysicalPassIndex m_passIdToPhysicalPassMapping;
|
|
unsigned int m_height;
|
|
unsigned int m_width;
|
|
};
|
|
}
|
|
|
|
#include <Nazara/Graphics/BakedFrameGraph.inl>
|
|
|
|
#endif // NAZARA_GRAPHICS_BAKEDFRAMEGRAPH_HPP
|