| 39 | } |
| 40 | |
| 41 | void BoxShadow::draw(DrawingContext& drawingContext, const BorderRadius& borderRadius) { |
| 42 | auto drawBounds = drawingContext.drawBounds().makeOffset(_offset.width, _offset.height); |
| 43 | |
| 44 | drawingContext.drawPaint(_paint, borderRadius, drawBounds, _lazyPath); |
| 45 | } |
| 46 | |
| 47 | } // namespace snap::drawing |
nothing calls this directly
no test coverage detected