Split eggPerformanceView.h into eggPerf.h and eggProcessMeter.h

This commit is contained in:
Sean Miller
2026-04-16 13:41:44 +01:00
parent 0aeec983a4
commit f05d556cf9
5 changed files with 21 additions and 10 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#include "common.h"
#include "egg/core/eggHeap.h"
#include "egg/core/eggPerformanceView.h"
#include "egg/core/eggProcessMeter.h"
#include "egg/core/eggSystem.h"
#include "nw4r/ut/ut_Color.h"
@@ -1,5 +1,5 @@
#ifndef EGG_PROCESS_METER_H
#define EGG_PROCESS_METER_H
#ifndef EGG_PERF_H
#define EGG_PERF_H
#include "egg/core/eggThread.h"
@@ -19,8 +19,6 @@ public:
/* 0x28 */ virtual bool isVisible() = 0;
};
class ProcessMeter : public Thread, public PerformanceView {};
}; // namespace EGG
#endif // EGG_PROCESS_METER_H
#endif // EGG_PERF_H
+13
View File
@@ -0,0 +1,13 @@
#ifndef EGG_PROCESS_METER_H
#define EGG_PROCESS_METER_H
#include "egg/core/eggPerf.h"
#include "egg/core/eggThread.h"
namespace EGG {
class ProcessMeter : public Thread, public PerformanceView {};
}; // namespace EGG
#endif // EGG_PROCESS_METER_H
+3 -3
View File
@@ -1,5 +1,5 @@
#ifndef EGG_UNK_H
#define EGG_UNK_H
#ifndef EGG_THREAD_MGR_H
#define EGG_THREAD_MGR_H
#include "common.h"
@@ -62,4 +62,4 @@ private:
} // namespace EGG
#endif
#endif // EGG_THREAD_MGR_H
+1 -1
View File
@@ -5,7 +5,7 @@
#include "egg/core/eggDisplay.h"
#include "egg/core/eggExpHeap.h"
#include "egg/core/eggHeap.h"
#include "egg/core/eggPerformanceView.h"
#include "egg/core/eggPerf.h"
#include "egg/core/eggSceneManager.h"
#include "rvl/OS.h"