VulkanRenderer: Handle window resize
This commit is contained in:
54
include/Nazara/Renderer/RenderFrame.hpp
Normal file
54
include/Nazara/Renderer/RenderFrame.hpp
Normal file
@@ -0,0 +1,54 @@
|
||||
// Copyright (C) 2020 Jérôme Leclercq
|
||||
// This file is part of the "Nazara Engine - Renderer module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_RENDERFRAME_HPP
|
||||
#define NAZARA_RENDERFRAME_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
#include <Nazara/Renderer/Config.hpp>
|
||||
#include <Nazara/Renderer/Enums.hpp>
|
||||
#include <functional>
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
class CommandBuffer;
|
||||
class CommandBufferBuilder;
|
||||
class RenderImage;
|
||||
class UploadPool;
|
||||
|
||||
class NAZARA_RENDERER_API RenderFrame
|
||||
{
|
||||
public:
|
||||
inline explicit RenderFrame();
|
||||
inline explicit RenderFrame(RenderImage* renderImage, bool framebufferInvalidation);
|
||||
RenderFrame(const RenderFrame&) = delete;
|
||||
RenderFrame(RenderFrame&&) = delete;
|
||||
~RenderFrame() = default;
|
||||
|
||||
void Execute(const std::function<void(CommandBufferBuilder& builder)>& callback, QueueTypeFlags queueTypeFlags);
|
||||
|
||||
UploadPool& GetUploadPool();
|
||||
|
||||
inline bool IsFramebufferInvalidated() const;
|
||||
|
||||
void SubmitCommandBuffer(CommandBuffer* commandBuffer, QueueTypeFlags queueTypeFlags) ;
|
||||
|
||||
void Present();
|
||||
|
||||
inline explicit operator bool();
|
||||
|
||||
RenderFrame& operator=(const RenderFrame&) = delete;
|
||||
RenderFrame& operator=(RenderFrame&&) = delete;
|
||||
|
||||
private:
|
||||
RenderImage* m_image;
|
||||
bool m_framebufferInvalidation;
|
||||
};
|
||||
}
|
||||
|
||||
#include <Nazara/Renderer/RenderFrame.inl>
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user