The Omega Update(TM) Part 3 (Rendering)

This commit is contained in:
2025-08-10 01:27:06 -04:00
parent b9c9105621
commit a48c72357a
26 changed files with 1250 additions and 1004 deletions

25
src/render.h Normal file
View File

@@ -0,0 +1,25 @@
#pragma once
#include "COMMON.h"
enum RenderType
{
RENDER_PNG,
RENDER_GIF,
RENDER_WEBM,
RENDER_COUNT
};
const inline std::string RENDER_TYPE_STRINGS[] =
{
"PNG Images",
"GIF image",
"WebM video",
};
const inline std::string RENDER_EXTENSIONS[RENDER_COUNT] =
{
".png",
".gif",
".webm"
};