[build] Make scoped zones a little easier to use

And report checking for tracy.
This commit is contained in:
Bill Currie 2023-11-30 21:08:34 +09:00
parent 514bb30655
commit da9e5d9ff3
3 changed files with 10 additions and 3 deletions

View file

@ -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)

View file

@ -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)

View file

@ -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;