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,22 @@
#ifndef HYDRARENDERSETTINGS
#define HYDRARENDERSETTINGS
struct HydraRenderSettings
{
int DisplayWidth = 1900;
int DisplayHeight = 1080;
int ViewportWidth = 1900;
int ViewportHeight = 1080;
int ColorDepth = 32;
int ZBits = 24;
int AlphaBits = 16;
float Near = 0.3f;
float Far = 10000.0f;
float FOV = 60.0f;
};
#endif /* HYDRARENDERSETTINGS */