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
7
namespace
Grindstone::GraphicsAPI {
8
class
CommandBuffer;
9
class
UniformBuffer;
10
class
DescriptorSet;
11
class
DescriptorSetLayout;
12
class
GraphicsPipeline;
13
class
RenderPass;
14
}
15
16
namespace
Grindstone::Editor {
17
class
GridRenderer
{
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
}
Grindstone::Editor::GridRenderer
Definition
GridRenderer.hpp:17
Grindstone::GraphicsAPI::CommandBuffer
Definition
CommandBuffer.hpp:21
Grindstone::GraphicsAPI::DescriptorSetLayout
Definition
DescriptorSetLayout.hpp:11
Grindstone::GraphicsAPI::DescriptorSet
Definition
DescriptorSet.hpp:11
Grindstone::GraphicsAPI::GraphicsPipeline
Definition
GraphicsPipeline.hpp:18
Grindstone::GraphicsAPI::RenderPass
Definition
RenderPass.hpp:27
Grindstone::GraphicsAPI::UniformBuffer
Definition
UniformBuffer.hpp:10
sources
code
Editor
GridRenderer.hpp
Generated by
1.12.0