Searched refs:red_map (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java76 private byte[] red_map, green_map, blue_map, alpha_map; field in class:PNGImageDecoder
114 pngassert(red_map!=null && ix<red_map.length);
115 c = new Color(red_map[ix]&0xff,green_map[ix]&0xff,blue_map[ix]&0xff);
162 red_map = new byte[tsize];
166 red_map[i] = buf[j];
197 if(red_map!=null) alen = red_map.length;
275 if(red_map==null) throw new PNGException("palette expected");
277 cm = new IndexColorModel(bitDepth,red_map
[all...]

Completed in 923 milliseconds