828384858687888990
/** * */ public boolean blit(Surface src, int width, int height) { Rect src_rect = new Rect( 0, 0, width, height ); return baseBlitSurface( src, src_rect, new Rect() ); }
9293949596979899100101
/** * */ public boolean blit(int x, int y, Surface src, int width, int height) { Rect dst_rect = new Rect( x, y, 0, 0 ); Rect src_rect = new Rect( 0, 0, width, height ); return baseBlitSurface( src, src_rect, dst_rect ); }