Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
BaseRenderer.hpp
1#pragma once
2
3#include <entt/entt.hpp>
4#include <glm/glm.hpp>
5
6namespace Grindstone {
7 namespace GraphicsAPI {
8 class RenderPass;
9 class Framebuffer;
10 class CommandBuffer;
11 }
12
13 namespace Events {
14 struct BaseEvent;
15 }
16
18 public:
19 struct RenderMode {
20 const char* name = nullptr;
21 };
22
23 virtual ~BaseRenderer() {};
24 virtual bool OnWindowResize(Events::BaseEvent*) = 0;
25 virtual void Resize(uint32_t width, uint32_t height) = 0;
26 virtual void Render(
27 GraphicsAPI::CommandBuffer* commandBuffer,
28 entt::registry& registry,
29 glm::mat4 projectionMatrix,
30 glm::mat4 viewMatrix,
31 glm::vec3 eyePos,
32 GraphicsAPI::Framebuffer* outputFramebuffer = nullptr // If nullptr, use default framebuffer
33 ) = 0;
34 virtual uint16_t GetRenderModeCount() const = 0;
35 virtual const RenderMode* GetRenderModes() const = 0;
36 virtual void SetRenderMode(uint16_t mode) = 0;
37 };
38}
Definition BaseRenderer.hpp:17
Definition CommandBuffer.hpp:21
Definition Framebuffer.hpp:19
Definition BaseRenderer.hpp:19
Definition BaseEvent.hpp:7