mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-14 03:09:08 +00:00
Changed: Added isGray() method to CGRBA
--HG-- branch : develop
This commit is contained in:
parent
3984309945
commit
2ed7c0be88
1 changed files with 8 additions and 0 deletions
|
@ -146,6 +146,14 @@ public:
|
||||||
*/
|
*/
|
||||||
uint8 toGray() const;
|
uint8 toGray() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Color is gray
|
||||||
|
*/
|
||||||
|
bool isGray() const
|
||||||
|
{
|
||||||
|
return R == G && G == B;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a 16 bits 565 pixel.
|
* Get a 16 bits 565 pixel.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue