slowly getting back...also, static linking
This commit is contained in:
15
src/render.h
15
src/render.h
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user