Loading...
Searching...
No Matches
Go to the documentation of this file.
17#include "../../../debug/fsLog.h"
21#define fsProfileStart( pName ) \
22 fsS64 startMs##pName = s3eTimerGetMs();
24#define fsProfileEnd( pName ) \
25 fsS64 elapsedMs##pName = s3eTimerGetMs() - startMs##pName; \
26 fsLogMsg( "PROFILE( " #pName " ) %d ms.\n", elapsedMs##pName );