Fission FSN
Loading...
Searching...
No Matches
fsProfile.h File Reference
#include <s3eTimer.h>
#include "../../../debug/fsLog.h"
#include "../../../fsBaseTypes.h"
Include dependency graph for fsProfile.h:

Go to the source code of this file.

Macros

#define fsProfileStart(pName)
#define fsProfileEnd(pName)

Macro Definition Documentation

◆ fsProfileEnd

#define fsProfileEnd ( pName)
Value:
fsS64 elapsedMs##pName = s3eTimerGetMs() - startMs##pName; \
fsLogMsg( "PROFILE( " #pName " ) %d ms.\n", elapsedMs##pName );
long long fsS64
Definition fsBaseTypes.h:23

◆ fsProfileStart

#define fsProfileStart ( pName)
Value:
fsS64 startMs##pName = s3eTimerGetMs();