Provide tracy color list in default client header.

This commit is contained in:
Bartosz Taudul 2017-11-25 15:18:23 +01:00
parent 2f09a2429e
commit 02b3e54943
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,7 @@
#ifndef __TRACY_HPP__
#define __TRACY_HPP__
#include "common/TracyColor.hpp"
#include "common/TracySystem.hpp"
#ifndef TRACY_ENABLE

View File

@ -3,7 +3,9 @@
namespace tracy
{
enum class Color
struct Color
{
enum ColorType
{
Snow = 0xfffafa,
GhostWhite = 0xf8f8ff,
@ -682,6 +684,7 @@ enum class Color
Silver = 0xc0c0c0,
Teal = 0x008080,
};
};
}
#endif