Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
RenderPass.hpp
1#pragma once
2
3#include "Formats.hpp"
4#include <stdint.h>
5
6namespace Grindstone::GraphicsAPI {
11 typedef union ClearColor {
12 float float32[4];
13 int32_t int32[4];
14 uint32_t uint32[4];
16
17 // Clear values for the DepthStencilBuffer.
19 bool hasDepthStencilAttachment = false;
20 float depth = 0.f;
21 uint32_t stencil = 0;
22 };
23
27 class RenderPass {
28 public:
30 ColorFormat colorFormat = ColorFormat::Invalid;
31 bool shouldClear = false;
32 };
33
34 struct CreateInfo {
35 const char* debugName = nullptr;
36 AttachmentInfo* colorAttachments = nullptr;
37 uint32_t colorAttachmentCount = 0;
38 DepthFormat depthFormat = DepthFormat::None;
39 bool shouldClearDepthOnLoad = true;
40 float debugColor[4];
41 };
42
43 virtual const char* GetDebugName() const = 0;
44 virtual const float* GetDebugColor() const = 0;
45 virtual ~RenderPass() {};
46 };
47}
Definition RenderPass.hpp:27
Definition RenderPass.hpp:18
Definition RenderPass.hpp:11