Searched refs:rgb24 (Results 1 – 1 of 1) sorted by relevance
2280 static void read_rgb(struct igt_vec4 *rgb, const uint8_t *rgb24) in read_rgb() argument2282 rgb->d[0] = rgb24[2]; in read_rgb()2283 rgb->d[1] = rgb24[1]; in read_rgb()2284 rgb->d[2] = rgb24[0]; in read_rgb()2288 static void write_rgb(uint8_t *rgb24, const struct igt_vec4 *rgb) in write_rgb() argument2290 rgb24[2] = clamprgb(rgb->d[0]); in write_rgb()2291 rgb24[1] = clamprgb(rgb->d[1]); in write_rgb()2292 rgb24[0] = clamprgb(rgb->d[2]); in write_rgb()2517 uint8_t *rgb24 = cvt->dst.ptr; in convert_yuv_to_rgb24() local2539 uint8_t *rgb_tmp = rgb24; in convert_yuv_to_rgb24()[all …]