consistency

This commit is contained in:
Irlan
2019-03-30 11:59:20 -03:00
parent f59df50fbd
commit 117f984698
6 changed files with 11 additions and 12 deletions

View File

@ -46,14 +46,14 @@ public:
void EndEvent(const char* name, float64 time);
ProfilerRecord* FindRecord(const char* name);
const b3Array<ProfilerRecord>& GetRecords() const { return m_records; }
private:
ProfilerRecord* FindRecord(const char* name);
b3StackArray<ProfilerRecord, 256> m_records; // persistent records sorted by call order
u32 m_call;
};
extern RecorderProfiler* g_profilerRecorder;
extern RecorderProfiler* g_recorderProfiler;
#endif