1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-02 13:43:52 +00:00
tracy/server/TracyUtility.hpp

25 lines
340 B
C++

#ifndef __TRACYUTILITY_HPP__
#define __TRACYUTILITY_HPP__
#include <stdint.h>
#include "imgui.h"
namespace tracy
{
enum class ShortenName : uint8_t
{
Never,
Always,
OnlyNormalize,
NoSpace,
NoSpaceAndNormalize,
};
const char* ShortenZoneName( ShortenName type, const char* name, ImVec2& tsz, float zsz );
}
#endif