Added skClear

This commit is contained in:
Jack Andersen 2015-11-28 16:55:05 -10:00
parent f075c38a4c
commit 9885d34420
2 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,7 @@ public:
static const CColor skPurple;
static const CColor skYellow;
static const CColor skWhite;
static const CColor skClear;
#if __SSE__
CColor(const __m128& mVec128) : mVec128(mVec128) {}

View File

@ -12,6 +12,7 @@ const CColor CColor::skOrange(Comp32(0xFF7000FFul));
const CColor CColor::skPurple(Comp32(0xA000FFFFul));
const CColor CColor::skYellow(Comp32(0xFFFF00FFul));
const CColor CColor::skWhite (Comp32(0xFFFFFFFFul));
const CColor CColor::skClear (Comp32(0x00000000ul));
float hueToRgb(float p, float q, float t)
{