Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
GridRenderer.hpp
1#pragma once
2
3#include <glm/glm.hpp>
4#include <glm/gtc/quaternion.hpp>
5#include <vector>
6
7namespace Grindstone::GraphicsAPI {
8 class CommandBuffer;
9 class UniformBuffer;
10 class DescriptorSet;
11 class DescriptorSetLayout;
12 class GraphicsPipeline;
13 class RenderPass;
14}
15
16namespace Grindstone::Editor {
18 public:
19 void Initialize(class Grindstone::GraphicsAPI::RenderPass* renderPass);
20 void Render(Grindstone::GraphicsAPI::CommandBuffer* commandBuffer, glm::vec2 renderScale, glm::mat4 proj, glm::mat4 view, float nearDist, float farDist, glm::quat rotation, float offset);
21 protected:
22 Grindstone::GraphicsAPI::UniformBuffer* gridUniformBuffer = nullptr;
23 Grindstone::GraphicsAPI::DescriptorSet* gridDescriptorSet = nullptr;
24 Grindstone::GraphicsAPI::DescriptorSetLayout* gridDescriptorSetLayout = nullptr;
25 Grindstone::GraphicsAPI::GraphicsPipeline* gridPipeline = nullptr;
26 };
27}
Definition GridRenderer.hpp:17
Definition CommandBuffer.hpp:21
Definition DescriptorSetLayout.hpp:11
Definition DescriptorSet.hpp:11
Definition GraphicsPipeline.hpp:18
Definition RenderPass.hpp:27
Definition UniformBuffer.hpp:10