sbool isFullyTransparent(int rgba) { ret (rgba & 0xFF000000) == 0; } sbool isFullyTransparent(Color color) { ret color.getAlpha() == 0; }