diff options
| author | robojumper <robojumper@gmail.com> | 2025-06-30 22:35:29 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-06-30 22:58:59 +0200 |
| commit | a8e9c4c3452556aada4dcabaf4d62b31a00a11cb (patch) | |
| tree | 5a92852ad6b44009032aabe3e34d2b75897aa41e /include/egg | |
| parent | 810f61fe94a44ede6ed18027eb6bdda429d7d91a (diff) | |
EGG symbols maintenance
Diffstat (limited to 'include/egg')
| -rw-r--r-- | include/egg/gfx/eggDrawPathDOF.h | 2 | ||||
| -rw-r--r-- | include/egg/gfx/eggLightTextureMgr.h | 2 | ||||
| -rw-r--r-- | include/egg/gfx/eggPostEffectBlur.h | 2 | ||||
| -rw-r--r-- | include/egg/gfx/eggScreen.h | 4 | ||||
| -rw-r--r-- | include/egg/gfx/eggStateEfb.h | 4 | ||||
| -rw-r--r-- | include/egg/gfx/eggStateGX.h | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/include/egg/gfx/eggDrawPathDOF.h b/include/egg/gfx/eggDrawPathDOF.h index 8ae49e79..a291f9c2 100644 --- a/include/egg/gfx/eggDrawPathDOF.h +++ b/include/egg/gfx/eggDrawPathDOF.h @@ -33,7 +33,7 @@ private: void internalDrawStandard(u16); void internalDrawLite(u16); - void afterDraw(u16 x, u16 y, u16 width, u16 height); + void allocAndCaptureBlurBuffer(u16 x, u16 y, u16 width, u16 height); /* 0x1C */ u16 field_0x1C; /* 0x1E */ u8 field_0x1E; diff --git a/include/egg/gfx/eggLightTextureMgr.h b/include/egg/gfx/eggLightTextureMgr.h index c12fc011..cd3ff842 100644 --- a/include/egg/gfx/eggLightTextureMgr.h +++ b/include/egg/gfx/eggLightTextureMgr.h @@ -71,7 +71,7 @@ public: } private: - static void fn_804AE340(nw4r::g3d::ResMat, GXTexCoordID); + static void setupEnvmap(nw4r::g3d::ResMat, GXTexCoordID); int getTextureIndex(const char *name) const; bool getSomeTfRelatedBool() const { diff --git a/include/egg/gfx/eggPostEffectBlur.h b/include/egg/gfx/eggPostEffectBlur.h index de6d9754..748c688a 100644 --- a/include/egg/gfx/eggPostEffectBlur.h +++ b/include/egg/gfx/eggPostEffectBlur.h @@ -57,7 +57,7 @@ public: } private: - void drawInternal(u8, u8, f32, f32); + void setMaterialMulti(u8, u8, f32, f32); /* 0x2C */ u8 field_0x2C; /* 0x30 */ f32 field_0x30; diff --git a/include/egg/gfx/eggScreen.h b/include/egg/gfx/eggScreen.h index 44fd56da..e78ba7bf 100644 --- a/include/egg/gfx/eggScreen.h +++ b/include/egg/gfx/eggScreen.h @@ -99,13 +99,13 @@ public: void CopyFromAnother(const Screen &other); void Reset(f32, f32, f32, f32, CanvasMode); - void OnDirectEfb() const; + void GetPosSizeInEfb() const; const DataEfb &GetDataEfb() const; bool IsChangeEfb() const; void CalcMatrixForDrawQuad(nw4r::math::MTX34 *, f32, f32, f32, f32) const; void FillBufferGX(u32, GXColor, u32) const; void GetGlobalPos(f32 *, f32 *) const; - void fn_804B2EE0(f32 *, f32 *, f32, f32) const; + void ConvertToEfb(f32, f32, f32 *, f32 *) const; f32 ScaleByX(f32 val) const { return val * StateGX::s_widthEfb / GetSizeXMax(GetComputedTVMode()); diff --git a/include/egg/gfx/eggStateEfb.h b/include/egg/gfx/eggStateEfb.h index 93386936..a1eac8e2 100644 --- a/include/egg/gfx/eggStateEfb.h +++ b/include/egg/gfx/eggStateEfb.h @@ -31,7 +31,7 @@ private: static s32 sPushCount; static u32 sFlag; - static bool GetShouldCapture(); + static bool isEnableDirtyBufferMode(); static bool GetUseTfRgb565(); public: @@ -45,7 +45,7 @@ private: // Unknown names static void fn_804B4270(BufferType type, u32 userData); - static void fn_804B4310(BufferType type, u32 userData); + static void popWorkBuffer(bool b, u32 userData); static f32 *fn_804B4550(); }; diff --git a/include/egg/gfx/eggStateGX.h b/include/egg/gfx/eggStateGX.h index 251d864e..697e3dc6 100644 --- a/include/egg/gfx/eggStateGX.h +++ b/include/egg/gfx/eggStateGX.h @@ -81,7 +81,7 @@ public: static void invalidateTexAllGX(); - static void GXSetPixelFmt_(GXPixelFmt pixelFmt, GXZFmt16 zFmt); + static void setPixelFormatGX(GXPixelFmt pixelFmt, GXZFmt16 zFmt); static bool GXSetColorUpdate_(bool); static bool GXSetAlphaUpdate_(bool); static bool GXSetDither_(bool); |
