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

/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DGrayPngTest.java73 int trans_pixel = 3;
77 trans_pixel = Integer.parseInt(args[2]);
84 new GrayPngTest(bpp).doTest(trans_type, trans_pixel);
89 private BufferedImage getTestImage(int trans_type, int trans_pixel) { argument
97 icm = new IndexColorModel(bpp, numColors, r, g, b, trans_pixel);
123 Arrays.fill(samples, trans_pixel);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DGifImageDecoder.java61 int trans_pixel = -1; field in class:GifImageDecoder
151 trans_pixel = ExtractByte(buf, 4);
153 trans_pixel = -1;
397 if (trans_pixel >= 0 && !curframe.initialframe) {
401 if ((pixel & 0xff) == trans_pixel) {
416 if ((pixel & 0xff) == trans_pixel) {
521 if (trans_pixel >= num_local_colors) {
523 num_local_colors = trans_pixel + 1;
527 0, false, trans_pixel);
529 || trans_pixel !
[all...]

Completed in 38 milliseconds