summaryrefslogtreecommitdiff
path: root/include/egg/gfx/eggPostEffectSimple.h
blob: 9f26b738047bb56cc10200c9274415c2123864c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef EGG_POST_EFFECT_SIMPLE_H
#define EGG_POST_EFFECT_SIMPLE_H

#include "egg/gfx/eggPostEffectBase.h"
#include "rvl/GX/GXTypes.h"
namespace EGG {

class PostEffectSimple : public PostEffectBase {
public:
    PostEffectSimple();
    virtual void setMaterialInternal() override;

    void setField0x38(s32 v) {
        field_0x38 = v;
    }

private:
    /* 0x2C */ GXColor field_0x2C;
    /* 0x30 */ f32 field_0x30;
    /* 0x34 */ GXTevScale field_0x34;
    /* 0x38 */ s32 field_0x38;
};

} // namespace EGG

#endif