slowly getting back...also, static linking

This commit is contained in:
2025-09-21 23:57:17 -04:00
parent 8039df667c
commit 7f07eaa128
20 changed files with 4579 additions and 631 deletions

View File

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