Lines Matching defs:pixel
41 uint8_t* pixel = img + (4 * (y*outBuffer.stride + x));
42 pixel[0] = r;
43 pixel[1] = g;
44 pixel[2] = b;
45 pixel[3] = 255;
52 // individual pixel values for testing purposes.
70 const uint8_t* pixel = img + (4 * (y*mWidth + x));
71 if (r != pixel[0] || g != pixel[1] || b != pixel[2]) {
72 String8 err(String8::format("pixel @ (%3d, %3d): "
74 x, y, r, g, b, pixel[0], pixel[1], pixel[2]));