| 676 | } |
| 677 | |
| 678 | void Bitmap::StretchBlit(Bitmap const& src, Rect const& src_rect, Opacity const& opacity, Bitmap::BlendMode blend_mode) { |
| 679 | StretchBlit(GetRect(), src, src_rect, opacity, blend_mode); |
| 680 | } |
| 681 | |
| 682 | void Bitmap::StretchBlit(Rect const& dst_rect, Bitmap const& src, Rect const& src_rect, Opacity const& opacity, Bitmap::BlendMode blend_mode) { |
| 683 | if (opacity.IsTransparent()) { |
no test coverage detected