Searched defs:clip_pixel (Results 1 – 2 of 2) sorted by relevance
48 static INLINE uint8_t clip_pixel(int val) { in clip_pixel() function
94 uint8_t clip_pixel(int x) { return x < 0 ? 0 : x > 255 ? 255 : x; } in clip_pixel() function