| 42 | } // namespace |
| 43 | |
| 44 | void Surface::BlitFrom(const Surface &src, SDL_Rect srcRect, Point targetPosition) const |
| 45 | { |
| 46 | SurfaceBlit</*SkipColorIndexZero=*/false>(src, srcRect, *this, targetPosition); |
| 47 | } |
| 48 | |
| 49 | void Surface::BlitFromSkipColorIndexZero(const Surface &src, SDL_Rect srcRect, Point targetPosition) const |
| 50 | { |
no outgoing calls
no test coverage detected