Lines Matching refs:src

81 UINT _gx_utility_8bpp_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *r…  in _gx_utility_8bpp_pixelmap_rotate()  argument
100 if (src -> gx_pixelmap_flags & GX_PIXELMAP_TRANSPARENT) in _gx_utility_8bpp_pixelmap_rotate()
102 destination -> gx_pixelmap_transparent_color = src -> gx_pixelmap_transparent_color; in _gx_utility_8bpp_pixelmap_rotate()
114 srcxres = src -> gx_pixelmap_width >> 1; in _gx_utility_8bpp_pixelmap_rotate()
115 srcyres = src -> gx_pixelmap_height >> 1; in _gx_utility_8bpp_pixelmap_rotate()
179 if ((xx >= 0) && (xx < src -> gx_pixelmap_width) && in _gx_utility_8bpp_pixelmap_rotate()
180 (yy >= 0) && (yy < src -> gx_pixelmap_height)) in _gx_utility_8bpp_pixelmap_rotate()
182 get = (GX_UBYTE *)src -> gx_pixelmap_data; in _gx_utility_8bpp_pixelmap_rotate()
183 get += yy * src -> gx_pixelmap_width; in _gx_utility_8bpp_pixelmap_rotate()
246 UINT _gx_utility_8bpp_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination,… in _gx_utility_8bpp_pixelmap_simple_rotate() argument
253 destination -> gx_pixelmap_transparent_color = src -> gx_pixelmap_transparent_color; in _gx_utility_8bpp_pixelmap_simple_rotate()
255 width = src -> gx_pixelmap_height; in _gx_utility_8bpp_pixelmap_simple_rotate()
256 height = src -> gx_pixelmap_width; in _gx_utility_8bpp_pixelmap_simple_rotate()
276 get = (GX_UBYTE *)src -> gx_pixelmap_data; in _gx_utility_8bpp_pixelmap_simple_rotate()
303 get = (GX_UBYTE *)src -> gx_pixelmap_data; in _gx_utility_8bpp_pixelmap_simple_rotate()
329 get = (GX_UBYTE *)src -> gx_pixelmap_data; in _gx_utility_8bpp_pixelmap_simple_rotate()
401 UINT _gx_utility_8bit_alphamap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *r… in _gx_utility_8bit_alphamap_rotate() argument
444 srcxres = src -> gx_pixelmap_width >> 1; in _gx_utility_8bit_alphamap_rotate()
445 srcyres = src -> gx_pixelmap_height >> 1; in _gx_utility_8bit_alphamap_rotate()
511 if ((xx >= -1) && (xx < src -> gx_pixelmap_width) && in _gx_utility_8bit_alphamap_rotate()
512 (yy >= -1) && (yy < src -> gx_pixelmap_height)) in _gx_utility_8bit_alphamap_rotate()
514 if ((xx >= 0) && (xx < src -> gx_pixelmap_width - 1) && \ in _gx_utility_8bit_alphamap_rotate()
515 (yy >= 0) && (yy < src -> gx_pixelmap_height - 1)) in _gx_utility_8bit_alphamap_rotate()
517 get = src -> gx_pixelmap_data; in _gx_utility_8bit_alphamap_rotate()
518 get += yy * src -> gx_pixelmap_width; in _gx_utility_8bit_alphamap_rotate()
523 c = *(get + src -> gx_pixelmap_width); in _gx_utility_8bit_alphamap_rotate()
524 d = *(get + src -> gx_pixelmap_width + 1); in _gx_utility_8bit_alphamap_rotate()
528 get = src -> gx_pixelmap_data; in _gx_utility_8bit_alphamap_rotate()
540 b = *(get + yy * src -> gx_pixelmap_width); in _gx_utility_8bit_alphamap_rotate()
543 if (yy < src -> gx_pixelmap_height - 1) in _gx_utility_8bit_alphamap_rotate()
545 d = *(get + (yy + 1) * src -> gx_pixelmap_width); in _gx_utility_8bit_alphamap_rotate()
553 if (xx < src -> gx_pixelmap_width - 1) in _gx_utility_8bit_alphamap_rotate()
558 else if (xx == src -> gx_pixelmap_width - 1) in _gx_utility_8bit_alphamap_rotate()
561 a = *(get + yy * src -> gx_pixelmap_width + xx); in _gx_utility_8bit_alphamap_rotate()
563 if (yy < src -> gx_pixelmap_height - 1) in _gx_utility_8bit_alphamap_rotate()
565 c = *(get + (yy + 1) * src -> gx_pixelmap_width + xx); in _gx_utility_8bit_alphamap_rotate()
571 a = *(get + yy * src -> gx_pixelmap_width + xx); in _gx_utility_8bit_alphamap_rotate()
572 b = *(get + yy * src -> gx_pixelmap_width + xx + 1); in _gx_utility_8bit_alphamap_rotate()