2015-07-26 21:39:49 +00:00
|
|
|
#ifndef ERENDEROPTIONS
|
|
|
|
#define ERENDEROPTIONS
|
|
|
|
|
|
|
|
#include <Common/EnumUtil.h>
|
|
|
|
|
|
|
|
enum ERenderOptions
|
|
|
|
{
|
2015-11-24 15:42:01 +00:00
|
|
|
eNoRenderOptions = 0x0,
|
2015-09-26 22:55:14 +00:00
|
|
|
eDrawWorld = 0x1,
|
|
|
|
eDrawWorldCollision = 0x2,
|
|
|
|
eDrawObjects = 0x4,
|
|
|
|
eDrawObjectCollision = 0x8,
|
|
|
|
eDrawLights = 0x10,
|
|
|
|
eDrawSky = 0x20,
|
|
|
|
eEnableUVScroll = 0x40,
|
|
|
|
eEnableBackfaceCull = 0x80,
|
|
|
|
eEnableOccluders = 0x100,
|
|
|
|
eNoMaterialSetup = 0x200,
|
|
|
|
eEnableBloom = 0x400,
|
|
|
|
eNoAlpha = 0x800
|
2015-07-26 21:39:49 +00:00
|
|
|
};
|
|
|
|
DEFINE_ENUM_FLAGS(ERenderOptions)
|
|
|
|
|
|
|
|
#endif // ERENDEROPTIONS
|
|
|
|
|