Improve dDlst_list_c::draw debug group code to also go to tracy, be less of a performance hog when active.

This commit is contained in:
PJB3005
2026-04-11 16:11:19 +02:00
parent eaec6487a3
commit ffd7183669
2 changed files with 29 additions and 4 deletions
+3
View File
@@ -5,6 +5,7 @@
#include <dolphin/gx/GXAurora.h>
#include <dolphin/gx/GXExtra.h>
#include "tracy/Tracy.hpp"
#define GX_DEBUG_GROUP(name, ...) \
do { \
@@ -51,4 +52,6 @@ struct GXScopedDebugGroup {
}
};
#define GX_AND_TRACY_SCOPED(name) GXScopedDebugGroup scope(name); ZoneScopedN(name);
#endif // DUSK_GX_HELPER_H