Home | History | Annotate | Download | only in graphics

Lines Matching refs:colors

39         int[] colors = new int[STRIDE * HEIGHT];
46 colors[y * STRIDE + x] = (a << 24) | (r << 16) | (g << 8) | b;
49 return colors;
73 int[] colors = mColors;
76 // these three are initialized with colors[]
77 mBitmaps[0] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
79 mBitmaps[1] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
81 mBitmaps[2] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT,
84 // these three will have their colors set later
92 mBitmaps[i].setPixels(colors, 0, STRIDE, 0, 0, WIDTH, HEIGHT);