mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
Added a new constructor that takes single Uint32 to Color
This commit is contained in:
parent
8dd31f2f52
commit
88ec48cb85
@ -61,6 +61,14 @@ public:
|
||||
////////////////////////////////////////////////////////////
|
||||
Color(Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha = 255);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \brief Construct the color from 32 bit unsigned integer
|
||||
///
|
||||
/// \param color Number containing the RGBA components (in that order)
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
Color(Uint32 color);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
// Static member data
|
||||
////////////////////////////////////////////////////////////
|
||||
|
@ -67,6 +67,17 @@ a(alpha)
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
Color::Color(Uint32 color) :
|
||||
r((color & 0xff000000) >> 24),
|
||||
g((color & 0x00ff0000) >> 16),
|
||||
b((color & 0x0000ff00) >> 8 ),
|
||||
a((color & 0x000000ff) >> 0 )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
bool operator ==(const Color& left, const Color& right)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user