mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 08:25:34 +00:00
[build] Make scoped zones a little easier to use
And report checking for tracy.
This commit is contained in:
parent
514bb30655
commit
da9e5d9ff3
3 changed files with 10 additions and 3 deletions
|
@ -6,10 +6,14 @@ AC_ARG_ENABLE(tracy,
|
|||
)
|
||||
HAVE_TRACY=no
|
||||
if test "x$enable_tracy" = "xyes"; then
|
||||
AC_MSG_CHECKING([for tracy/public])
|
||||
tracy_dir=${srcdir}/tracy/public
|
||||
if test -d ${tracy_dir}; then
|
||||
TRACY_CFLAGS="-I ${tracy_dir} -DHAVE_TRACY"
|
||||
HAVE_TRACY=yes
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
fi
|
||||
AC_SUBST(TRACY_CFLAGS)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#define TRACY_ENABLE
|
||||
#include "tracy/TracyC.h"
|
||||
|
||||
inline void __qfZoneEnd (TracyCZoneCtx **ctxptr)
|
||||
static inline void __qfZoneEnd (TracyCZoneCtx **ctxptr)
|
||||
{
|
||||
TracyCZoneEnd (**ctxptr);
|
||||
}
|
||||
|
@ -21,7 +21,9 @@ inline void __qfZoneEnd (TracyCZoneCtx **ctxptr)
|
|||
#define qfZoneNamed(varname, active) \
|
||||
TracyCZone (varname, active) \
|
||||
__attribute__((cleanup(__qfZoneEnd))) \
|
||||
TracyCZoneCtx *qfConcat(__qfZone, __COUNTER__) = &varname
|
||||
TracyCZoneCtx *qfConcat(__qfScoped##varname, __COUNTER__) = &varname
|
||||
#define qfZoneScoped(active) \
|
||||
qfZoneNamed (__qfZone, active)
|
||||
|
||||
#define qfZoneEnd(varname) TracyCZoneEnd (varname)
|
||||
|
||||
|
@ -40,6 +42,7 @@ inline void __qfZoneEnd (TracyCZoneCtx **ctxptr)
|
|||
|
||||
#define qfFrameMark
|
||||
#define qfZoneNamed(varname, active)
|
||||
#define qfZoneScoped(active)
|
||||
#define qfZoneEnd(varname)
|
||||
#define qfZoneName(ctx, name, size)
|
||||
#define qfZoneColor(ctx, color)
|
||||
|
|
|
@ -678,7 +678,7 @@ Host_FilterTime (float time)
|
|||
static void
|
||||
_Host_Frame (float time)
|
||||
{
|
||||
qfZoneNamedN (hfzone, "_Host_Frame", true);
|
||||
qfZoneScoped (true);
|
||||
static int first = 1;
|
||||
float sleeptime;
|
||||
|
||||
|
|
Loading…
Reference in a new issue