mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Address clang tidy complaints
Update Ghoul repository Update SGCT repository
This commit is contained in:
@@ -45,14 +45,14 @@ struct PerformanceLayout {
|
||||
float updateRotation[NumberValues];
|
||||
float updateScaling[NumberValues];
|
||||
};
|
||||
SceneGraphPerformanceLayout sceneGraphEntries[MaxValues];
|
||||
SceneGraphPerformanceLayout sceneGraphEntries[MaxValues] = {};
|
||||
int16_t nScaleGraphEntries = 0;
|
||||
|
||||
struct FunctionPerformanceLayout {
|
||||
char name[LengthName];
|
||||
float time[NumberValues];
|
||||
};
|
||||
FunctionPerformanceLayout functionEntries[MaxValues];
|
||||
FunctionPerformanceLayout functionEntries[MaxValues] = {};
|
||||
int16_t nFunctionEntries = 0;
|
||||
};
|
||||
|
||||
|
||||
@@ -42,8 +42,6 @@ public:
|
||||
static void CreateGlobalSharedMemory();
|
||||
static void DestroyGlobalSharedMemory();
|
||||
|
||||
~PerformanceManager();
|
||||
|
||||
void setEnabled(bool enabled);
|
||||
bool isEnabled() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user