Home | History | Annotate | Download | only in aapt

Lines Matching refs:col

811     uint32_t colors[256], col;
865 col = (uint32_t) ((rr << 24) | (gg << 16) | (bb << 8) | aa);
868 if (colors[idx] == col) {
883 colors[num_colors++] = col;
942 col = colors[idx];
943 rgbPalette[idx].red = (png_byte) ((col >> 24) & 0xff);
944 rgbPalette[idx].green = (png_byte) ((col >> 16) & 0xff);
945 rgbPalette[idx].blue = (png_byte) ((col >> 8) & 0xff);
946 alphaPalette[idx] = (png_byte) (col & 0xff);