Searched refs:UPSCALE (Results 1 – 3 of 3) sorted by relevance
343 #define UPSCALE( x ) ( (x) * ( ONE_PIXEL >> 6 ) ) macro346 #define UPSCALE( x ) ( (x) >> ( 6 - PIXEL_BITS ) ) macro1005 arc[0].x = UPSCALE( to->x ); in gray_render_conic()1006 arc[0].y = UPSCALE( to->y ); in gray_render_conic()1007 arc[1].x = UPSCALE( control->x ); in gray_render_conic()1008 arc[1].y = UPSCALE( control->y ); in gray_render_conic()1100 arc[0].x = UPSCALE( to->x ); in gray_render_cubic()1101 arc[0].y = UPSCALE( to->y ); in gray_render_cubic()1102 arc[1].x = UPSCALE( control2->x ); in gray_render_cubic()1103 arc[1].y = UPSCALE( control2->y ); in gray_render_cubic()[all …]
4920 cubic deviations have been estimated _after_ UPSCALE, whereas4921 conic ones have been evaluated _before_ UPSCALE, which produces
1042 * src/smooth/ftgrays.c (SUBPIXELS, UPSCALE, DOWNSCALE): Do it.