mirror of
https://github.com/zeldaret/ss
synced 2026-07-08 13:56:15 -04:00
More effect
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
#include "common.h"
|
||||
#include "egg/egg_types.h"
|
||||
#include "egg/gfx/eggCapTexture.h"
|
||||
#include "nw4r/math/math_types.h"
|
||||
#include "rvl/GX/GXTypes.h"
|
||||
|
||||
namespace EGG {
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
namespace EGG {
|
||||
|
||||
class PostEffectBlur : PostEffectBase {
|
||||
struct Kernel {
|
||||
struct Stage {
|
||||
/* 0x00 */ u8 field_0x00;
|
||||
/* 0x01 */ GXColor field_0x01;
|
||||
/* 0x08 */ f32 field_0x08;
|
||||
@@ -38,7 +38,7 @@ private:
|
||||
/* 0x2C */ u8 field_0x2C;
|
||||
/* 0x30 */ f32 field_0x30;
|
||||
/* 0x34 */ f32 field_0x34;
|
||||
/* 0x38 */ Kernel field_0x38[4];
|
||||
/* 0x38 */ Stage field_0x38[4];
|
||||
};
|
||||
|
||||
} // namespace EGG
|
||||
|
||||
@@ -8,22 +8,22 @@ namespace EGG {
|
||||
|
||||
class PostEffectUnk1 : public PostEffectBase {
|
||||
// Size 0x18
|
||||
struct Kernel {
|
||||
struct Stage {
|
||||
/* 0x00 */ EGG::CpuTexture *field_0x00;
|
||||
/* 0x04 */ GXTexMapID mTexMapId;
|
||||
/* 0x08 */ GXColor field_0x08;
|
||||
/* 0x0C */ f32 field_0x0C;
|
||||
/* 0x10 */ u8 field_0x10;
|
||||
};
|
||||
|
||||
public:
|
||||
PostEffectUnk1();
|
||||
virtual void setMaterialInternal() override;
|
||||
|
||||
|
||||
/* 0x2C */ u8 field_0x2C;
|
||||
/* 0x2D */ u8 field_0x2D;
|
||||
/* 0x30 */ f32 field_0x30;
|
||||
/* 0x34 */ Kernel field_0x34[3];
|
||||
/* 0x34 */ Stage field_0x34[3];
|
||||
};
|
||||
|
||||
} // namespace EGG
|
||||
|
||||
@@ -1,6 +1,32 @@
|
||||
#ifndef EGG_POST_EFFECT_UNK2_H
|
||||
#define EGG_POST_EFFECT_UNK2_H
|
||||
|
||||
namespace EGG {} // namespace EGG
|
||||
#include "egg/egg_types.h"
|
||||
#include "egg/gfx/eggPostEffectBase.h"
|
||||
|
||||
namespace EGG {
|
||||
|
||||
class PostEffectUnk2 : public PostEffectBase {
|
||||
public:
|
||||
PostEffectUnk2();
|
||||
virtual ~PostEffectUnk2();
|
||||
virtual void draw(f32 width, f32 height) override;
|
||||
virtual void setMaterialInternal() override;
|
||||
|
||||
private:
|
||||
/* 0x2C */ s32 field_0x2C;
|
||||
/* 0x30 */ u32 field_0x30;
|
||||
/* 0x34 */ u8 field_0x34;
|
||||
/* 0x35 */ u8 field_0x35;
|
||||
/* 0x36 */ s16 field_0x36;
|
||||
/* 0x38 */ f32 field_0x38;
|
||||
/* 0x3C */ f32 field_0x3C;
|
||||
/* 0x40 */ f32 field_0x40;
|
||||
/* 0x44 */ f32 field_0x44;
|
||||
/* 0x48 */ f32 field_0x48;
|
||||
/* 0x4C */ EGG::CpuTexture *mpTexture;
|
||||
};
|
||||
|
||||
} // namespace EGG
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user