tracy/server/TracyColor.hpp
2020-04-02 01:04:59 +02:00

14 lines
155 B
C++

#ifndef __TRACYCOLOR_HPP__
#define __TRACYCOLOR_HPP__
#include <stdint.h>
namespace tracy
{
uint32_t GetHsvColor( uint64_t hue, int value );
}
#endif