Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
RenderTarget.hpp
1#pragma once
2
3#include <stdint.h>
4#include "Formats.hpp"
5
6namespace Grindstone::GraphicsAPI {
13 public:
14 struct CreateInfo {
15 const char* debugName = nullptr;
16 ColorFormat format = ColorFormat::Invalid;
17 bool isSampled = false;
18 bool isWrittenByCompute = false;
19 bool hasMipChain = false;
20 uint32_t width = 0, height = 0;
21 CreateInfo() {};
22 CreateInfo(ColorFormat colorFormat, uint32_t width, uint32_t height, bool isSampled, bool isWrittenByCompute, const char* name, bool hasMipChain = false) :
23 format(colorFormat),
24 width(width),
25 height(height),
26 isSampled(isSampled),
27 isWrittenByCompute(isWrittenByCompute),
28 debugName(name),
29 hasMipChain(hasMipChain) {}
30 };
31
32 virtual void Resize(uint32_t width, uint32_t height) = 0;
33 virtual void RenderScreen(unsigned int i, unsigned int resx, unsigned int resy, unsigned char *data) = 0;
34 virtual ~RenderTarget() {};
35 };
36}
Definition RenderTarget.hpp:12