Files
UnrealEngine/Engine/Plugins/Editor/ProxyLODPlugin/Source/ProxyLOD/Private/ProxyLODDebugTimer.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

15 lines
268 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Misc/ScopedSlowTask.h"
#include "Stats/StatsMisc.h"
#if 0
#define PROXYLOD_DEBUG_TIMER(name_) SCOPE_LOG_TIME(name_, nullptr)
#else
#define PROXYLOD_DEBUG_TIMER(name_) (void)name_;
#endif