initial commit

This commit is contained in:
Confideo-IOM
2026-07-17 15:30:29 +01:00
commit 7e8ec5a825
416 changed files with 40308 additions and 0 deletions
@@ -0,0 +1,20 @@
#ifndef HYDRAPIPELINE
#define HYDRAPIPELINE
#include "../engine/HydraObject.h"
#include "../windowmanager/HydraRenderSettings.h"
#include <vector>
class HydraRenderStage;
class HydraPipeline : public HydraObject
{
public:
virtual void Initialise() = 0;
virtual void Shutdown() = 0;
virtual void Render() = 0;
protected:
std::vector<HydraRenderStage*> m_render_stages;
};
#endif /* HYDRAPIPELINE */