Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
DepthStencilTarget.hpp
1#pragma once
2
3#include <stdint.h>
4
5#include "Formats.hpp"
6
7namespace Grindstone::GraphicsAPI {
16 public:
17 struct CreateInfo {
18 const char* debugName = nullptr;
19 DepthFormat format = DepthFormat::None;
20 uint32_t width = 0, height = 0;
21 bool isShadowMap = false;
22 bool isCubemap = false;
23 bool isSampled = false;
24
25 CreateInfo() {};
26 CreateInfo(DepthFormat depthFormat, uint32_t width, uint32_t height, bool isShadowMap, bool isCubeMap, bool isSampled, const char* debugName) :
27 format(depthFormat),
28 width(width), height(height),
29 isShadowMap(isShadowMap),
30 isCubemap(isCubeMap),
31 isSampled(isSampled),
32 debugName(debugName) {}
33 };
34
35 virtual void Resize(uint32_t width, uint32_t height) = 0;
36 virtual void BindFace(int k) = 0;
37 virtual ~DepthStencilTarget() {};
38 };
39}
Definition DepthStencilTarget.hpp:15