mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 03:32:28 +00:00
chore(ui): clean up function declarations
This commit is contained in:
parent
f24fbf26c6
commit
d61f0faef1
38 changed files with 471 additions and 471 deletions
|
|
@ -18,9 +18,9 @@ class CFrameStrataNode {
|
|||
STORM_EXPLICIT_LIST(CRenderBatch, renderLink) renderList;
|
||||
|
||||
// Member functions
|
||||
int32_t BuildBatches(void);
|
||||
void OnLayerUpdate(float);
|
||||
bool RemoveFrame(CSimpleFrame*);
|
||||
int32_t BuildBatches();
|
||||
void OnLayerUpdate(float elapsedSec);
|
||||
bool RemoveFrame(CSimpleFrame* frame);
|
||||
};
|
||||
|
||||
class CFrameStrata {
|
||||
|
|
@ -33,12 +33,12 @@ class CFrameStrata {
|
|||
|
||||
// Member functions
|
||||
void AddFrame(CSimpleFrame*);
|
||||
int32_t BuildBatches(int32_t);
|
||||
void CheckOcclusion(void);
|
||||
int32_t FrameOccluded(CSimpleFrame*);
|
||||
void OnLayerUpdate(float);
|
||||
void RemoveFrame(CSimpleFrame*);
|
||||
void RenderBatches(void);
|
||||
int32_t BuildBatches(int32_t a2);
|
||||
void CheckOcclusion();
|
||||
int32_t FrameOccluded(CSimpleFrame* frame);
|
||||
void OnLayerUpdate(float elapsedSec);
|
||||
void RemoveFrame(CSimpleFrame* frame);
|
||||
void RenderBatches();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue