26 lines
590 B
C
26 lines
590 B
C
#ifndef ERENDEROPTIONS
|
|
#define ERENDEROPTIONS
|
|
|
|
#include <Common/EnumUtil.h>
|
|
|
|
enum ERenderOptions
|
|
{
|
|
eNoRenderOptions = 0x0,
|
|
eDrawWorld = 0x1,
|
|
eDrawWorldCollision = 0x2,
|
|
eDrawObjects = 0x4,
|
|
eDrawObjectCollision = 0x8,
|
|
eDrawLights = 0x10,
|
|
eDrawSky = 0x20,
|
|
eEnableUVScroll = 0x40,
|
|
eEnableBackfaceCull = 0x80,
|
|
eEnableOccluders = 0x100,
|
|
eNoMaterialSetup = 0x200,
|
|
eEnableBloom = 0x400,
|
|
eNoAlpha = 0x800
|
|
};
|
|
DEFINE_ENUM_FLAGS(ERenderOptions)
|
|
|
|
#endif // ERENDEROPTIONS
|
|
|