Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
GraphicsPipeline.hpp
1#pragma once
2
3#include <string>
4#include <vector>
5#include <iostream>
6
7#include "Formats.hpp"
8
9namespace Grindstone::GraphicsAPI {
10 class RenderPass;
11 class DescriptorSetLayout;
12 struct VertexBufferLayout;
13
19 public:
20 struct CreateInfo {
22 const char* fileName;
23 const char* content;
24 uint32_t size;
25 ShaderStage type;
26 };
27
28 const char* debugName;
29 GeometryType primitiveType;
30 PolygonFillMode polygonFillMode;
31 CullMode cullMode;
32 RenderPass* renderPass;
33 float width, height;
34 int32_t scissorX = 0, scissorY = 0;
35 uint32_t scissorW, scissorH;
36 ShaderStageData* shaderStageCreateInfos;
37 uint32_t shaderStageCreateInfoCount;
38 DescriptorSetLayout** descriptorSetLayouts;
39 uint32_t descriptorSetLayoutCount;
40 VertexBufferLayout* vertexBindings;
41 uint32_t vertexBindingsCount;
42
43 BlendData blendData = BlendData::NoBlending();
44 ColorMask colorMask = ColorMask::RGBA;
45
46 uint32_t colorAttachmentCount;
47 CompareOperation depthCompareOp = CompareOperation::LessOrEqual;
48 bool isDepthTestEnabled = true;
49 bool isDepthWriteEnabled = true;
50 bool isStencilEnabled = false;
51 bool hasDynamicViewport = false;
52 bool hasDynamicScissor = false;
53 bool isDepthBiasEnabled = false;
54 bool isDepthClampEnabled = false;
55
56 float depthBiasConstantFactor = 1.25f;
57 float depthBiasSlopeFactor = 1.75f;
58 float depthBiasClamp = 0.0f;
59 };
60
61 virtual void Recreate(const CreateInfo& createInfo) = 0;
62 };
63}
Definition DescriptorSetLayout.hpp:11
Definition GraphicsPipeline.hpp:18
Definition RenderPass.hpp:27
Definition Formats.hpp:244
Definition VertexBuffer.hpp:104