Pre-resize fillparent

This commit is contained in:
2018-08-13 22:22:10 -04:00
parent 58fa6f0503
commit 353dc21750
95 changed files with 478 additions and 437 deletions
@@ -23,7 +23,7 @@ namespace TimingEngine {
public:
cTiming& operator=( const cTiming& copy );
///Functions
/// Functions
static cTiming& Inst();
static void Delete();
@@ -34,9 +34,9 @@ namespace TimingEngine {
/* Sleeps if need */
void Time();
///Sets
/// Sets
void setFTP( const unsigned long int ftp = 30 );
///Gets
/// Gets
const unsigned long int getFTP() const;
/* Gets return true if Timer was initialized */
const bool IsInit() const;
@@ -51,18 +51,18 @@ namespace TimingEngine {
const float FrameTime();
private:
///Variables
unsigned long int m_nextTime;// = 0
/// Variables
unsigned long int m_nextTime;/// = 0
unsigned long int m_rate;// = (1000 / m_ftp)
unsigned long int m_rate;/// = (1000 / m_ftp)
unsigned long int m_ftp;// = 30
unsigned long int m_ftp;/// = 30
static cTiming* sp_inst;// = nullptr
static cTiming* sp_inst;/// = nullptr
unsigned long int m_start;// = 0
float m_lastTime;// = 0.0
float m_frameTime;// = 0.0
unsigned long int m_start;/// = 0
float m_lastTime;/// = 0.0
float m_frameTime;/// = 0.0
};/// END CLASS DEFINITION cTiming
}/// END NAMESPACE DEFINITION TimingEngine
#endif/// END IFNDEF _CTIMING_HPP_