2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-04 18:21:49 +00:00

Add supplemental data for iw4 statemap layout

This commit is contained in:
Jan
2022-08-20 14:37:05 +02:00
parent b93707dfe5
commit 2dd8660824
6 changed files with 401 additions and 29 deletions

View File

@ -680,7 +680,7 @@ namespace IW4
float literal[4];
};
enum GfxBlend
enum GfxBlend : unsigned int
{
GFXS_BLEND_DISABLED = 0x0,
GFXS_BLEND_ZERO = 0x1,
@ -696,7 +696,7 @@ namespace IW4
GFXS_BLEND_MASK = 0xF,
};
enum GfxBlendOp
enum GfxBlendOp : unsigned int
{
GFXS_BLENDOP_DISABLED = 0x0,
GFXS_BLENDOP_ADD = 0x1,
@ -707,7 +707,7 @@ namespace IW4
GFXS_BLENDOP_MASK = 0x7,
};
enum GfxStencilFunc
enum GfxStencilFunc : unsigned int
{
GFXS_STENCILFUNC_NEVER = 0x0,
GFXS_STENCILFUNC_LESS = 0x1,
@ -722,7 +722,7 @@ namespace IW4
GFXS_STENCILFUNC_MASK = 0x7
};
enum GfxStencilOp
enum GfxStencilOp : unsigned int
{
GFXS_STENCILOP_KEEP = 0x0,
GFXS_STENCILOP_ZERO = 0x1,