1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Move HSV color conversion to a separate source file.

This commit is contained in:
Bartosz Taudul
2020-04-02 01:04:40 +02:00
parent 2303f18d39
commit b2c2bfc2aa
5 changed files with 58 additions and 28 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef __TRACYCOLOR_HPP__
#define __TRACYCOLOR_HPP__
#include <stdint.h>
namespace tracy
{
uint32_t GetHsvColor( uint64_t hue, int value );
}
#endif