Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
RenderPathBase.hpp
1 #pragma once
2
3#include <stdint.h>
4
5namespace Grindstone {
6 namespace Rendering {
8 public:
9 virtual ~RenderPathBase() {};
10 virtual void initialize() = 0;
11 virtual void render() = 0;
12 virtual void resizeViewport(uint32_t x, uint32_t y) = 0;
13 }; // class RenderPathBase
14 } // namespace Rendering
15} // namespace Grindstone
Definition RenderPathBase.hpp:7