mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
14 lines
155 B
C++
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
|