Home | History | Annotate | Download | only in gdx2d

Lines Matching refs:src_width

809 		   int32_t src_x, int32_t src_y, uint32_t src_width, uint32_t src_height,

819 float x_ratio = ((float)src_width - 1)/ dst_width;
849 if(sx + 1 < src_width) c2 = to_RGBA8888(src_pixmap->format, pget((void*)(src_ptr + sbpp))); else c2 = c1;
851 if(sx + 1< src_width && sy + 1 < src_height) c4 = to_RGBA8888(src_pixmap->format, pget((void*)(src_ptr + spitch + sbpp))); else c4 = c1;
890 int32_t src_x, int32_t src_y, uint32_t src_width, uint32_t src_height,
900 uint32_t x_ratio = (src_width << 16) / dst_width + 1;
939 int32_t src_x, int32_t src_y, uint32_t src_width, uint32_t src_height,
942 blit_linear(src_pixmap, dst_pixmap, src_x, src_y, src_width, src_height, dst_x, dst_y, dst_width, dst_height);
944 blit_bilinear(src_pixmap, dst_pixmap, src_x, src_y, src_width, src_height, dst_x, dst_y, dst_width, dst_height);
948 int32_t src_x, int32_t src_y, uint32_t src_width, uint32_t src_height,
950 if(src_width == dst_width && src_height == dst_height) {
951 blit_same_size(src_pixmap, dst_pixmap, src_x, src_y, dst_x, dst_y, src_width, src_height);
953 blit(src_pixmap, dst_pixmap, src_x, src_y, src_width, src_height, dst_x, dst_y, dst_width, dst_height);