The Omega Update(TM) Part 3 (Rendering)
This commit is contained in:
25
src/render.h
Normal file
25
src/render.h
Normal 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"
|
||||
};
|
||||
Reference in New Issue
Block a user