Searched refs:rgba (Results 1 – 8 of 8) sorted by relevance
90 int rgba = 0; // ...; // comes from PixelGrabber, BufferedImage.getRGB etc. in stuff() local91 int red = (rgba >> 16) & 0xff; in stuff()92 int green = (rgba >> 8) & 0xff; in stuff()93 int blue = rgba & 0xff; in stuff()94 int alpha = (rgba >> 24) & 0xff; in stuff()101 rgba = (alpha << 24) | (red << 16) | (green << 8) | blue; in stuff()
Completed in 48 milliseconds