Searched refs:get_pixel (Results 1 – 1 of 1) sorted by relevance
/external/pixman/pixman/ |
D | pixman-bits-image.c | 75 get_pixel_t get_pixel) in bits_image_fetch_pixel_nearest() argument 85 return get_pixel (image, x0, y0, FALSE); in bits_image_fetch_pixel_nearest() 89 return get_pixel (image, x0, y0, TRUE); in bits_image_fetch_pixel_nearest() 97 get_pixel_t get_pixel) in bits_image_fetch_pixel_bilinear() argument 124 tl = get_pixel (image, x1, y1, FALSE); in bits_image_fetch_pixel_bilinear() 125 bl = get_pixel (image, x1, y2, FALSE); in bits_image_fetch_pixel_bilinear() 126 tr = get_pixel (image, x2, y1, FALSE); in bits_image_fetch_pixel_bilinear() 127 br = get_pixel (image, x2, y2, FALSE); in bits_image_fetch_pixel_bilinear() 131 tl = get_pixel (image, x1, y1, TRUE); in bits_image_fetch_pixel_bilinear() 132 tr = get_pixel (image, x2, y1, TRUE); in bits_image_fetch_pixel_bilinear() [all …]
|