| 25 | constexpr Scalar kUIKitToSkiaBlurRatio = 2.0f; |
| 26 | |
| 27 | ImageLayer::ImageLayer(const Ref<Resources>& resources) : Layer(resources), _tintColor(Color::transparent()) { |
| 28 | _imagePaint.setAntiAlias(true); |
| 29 | } |
| 30 | |
| 31 | ImageLayer::~ImageLayer() = default; |
| 32 |
nothing calls this directly
no test coverage detected