Searched refs:pix_hi (Results 1 – 2 of 2) sorted by relevance
41 uint8_t pix_hi = in_image[orig_img_loc + 1]; in ResizeConvertImage() local43 out_image[out_img_loc] = (0xF8 & pix_hi); in ResizeConvertImage()45 ((0x07 & pix_hi) << 5) | ((0xE0 & pix_lo) >> 3); in ResizeConvertImage()
57 uint8_t pix_hi = image_data[1]; in display_image_rgb565() local58 uint8_t r = (0xF8 & pix_hi); in display_image_rgb565()59 uint8_t g = ((0x07 & pix_hi) << 5) | ((0xE0 & pix_lo) >> 3); in display_image_rgb565()