PColorRGBA.fromRGBA constructor
PColorRGBA.fromRGBA(
- int p
Implementation
PColorRGBA.fromRGBA(int p)
: this(
(p >> 24) & 0xff,
(p >> 16) & 0xff,
(p >> 8) & 0xff,
((p) & 0xff) / 255,
);