Home
last modified time | relevance | path

Searched refs:px (Results 1 – 1 of 1) sorted by relevance

/device/generic/goldfish/camera/fake-pipeline2/
DSensor.cpp395 uint16_t *px = (uint16_t*)img + y * stride; in captureRaw() local
418 *px++ = rawCount; in captureRaw()
433 uint8_t *px = img + outY * stride * 4; in captureRGBA() local
443 *px++ = rCount < 255*64 ? rCount / 64 : 255; in captureRGBA()
444 *px++ = gCount < 255*64 ? gCount / 64 : 255; in captureRGBA()
445 *px++ = bCount < 255*64 ? bCount / 64 : 255; in captureRGBA()
446 *px++ = 255; in captureRGBA()
464 uint8_t *px = img + outY * stride * 3; in captureRGB() local
473 *px++ = rCount < 255*64 ? rCount / 64 : 255; in captureRGB()
474 *px++ = gCount < 255*64 ? gCount / 64 : 255; in captureRGB()
[all …]