mirror of
https://github.com/zeldaret/ss
synced 2026-07-09 06:13:17 -04:00
PostEffectMask OK
This commit is contained in:
@@ -96,11 +96,11 @@ public:
|
||||
|
||||
static u32 s_flag;
|
||||
|
||||
static GXColor BLACK;
|
||||
static GXColor WHITE;
|
||||
static GXColor GREEN;
|
||||
static GXColor RED;
|
||||
static GXColor BLUE;
|
||||
static const GXColor BLACK;
|
||||
static const GXColor WHITE;
|
||||
static const GXColor GREEN;
|
||||
static const GXColor RED;
|
||||
static const GXColor BLUE;
|
||||
};
|
||||
|
||||
} // namespace EGG
|
||||
|
||||
@@ -1,6 +1,30 @@
|
||||
#ifndef EGG_POST_EFFECT_MASK_H
|
||||
#define EGG_POST_EFFECT_MASK_H
|
||||
|
||||
namespace EGG {} // namespace EGG
|
||||
#include "egg/gfx/eggPostEffectBase.h"
|
||||
#include "rvl/GX/GXTypes.h"
|
||||
|
||||
namespace EGG {
|
||||
|
||||
class PostEffectMask : public PostEffectBase {
|
||||
public:
|
||||
PostEffectMask();
|
||||
|
||||
virtual void setMaterialInternal() override;
|
||||
|
||||
GXTevScale GetTevScale() const {
|
||||
return static_cast<GXTevScale>(field_0x1BC);
|
||||
}
|
||||
|
||||
private:
|
||||
/* 0x2C */ int field_0x2C;
|
||||
/* 0x30 */ GXColor mColor;
|
||||
/* 0x34 */ f32 field_0x34;
|
||||
/* 0x38 */ f32 field_0x38;
|
||||
/* 0x3C */ u8 _0x3C[0x180];
|
||||
/* 0x1BC */ u8 field_0x1BC;
|
||||
};
|
||||
|
||||
} // namespace EGG
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user