Added: CRGBA::Transparent color preset

--HG--
branch : html-improvements
hg/feature/html-improvements
Nimetu 5 years ago
parent 13bdecc3aa
commit 26e356723e

@ -377,6 +377,7 @@ public:
static const CRGBA Magenta ;
static const CRGBA Cyan ;
static const CRGBA White ;
static const CRGBA Transparent ;
};

@ -48,6 +48,7 @@ const CRGBA CRGBA::Blue(0, 0, 255) ;
const CRGBA CRGBA::Magenta(255, 0, 255) ;
const CRGBA CRGBA::Cyan(0, 255, 255) ;
const CRGBA CRGBA::White(255, 255, 255) ;
const CRGBA CRGBA::Transparent(0, 0, 0, 0);
// ***************************************************************************
void CRGBA::serial(NLMISC::IStream &f)

Loading…
Cancel
Save