|
@@ -28,7 +28,9 @@ class VidPainter extends CustomPainter {
|
|
|
Rect.fromLTWH(0, 0, image.width.toDouble(), image.height.toDouble()),
|
|
|
Rect.fromLTWH(
|
|
|
offsetX, offsetY, image.width * scale, image.height * scale),
|
|
|
- Paint()..colorFilter = ColorFilter.matrix(colorFilterMatrix));
|
|
|
+ Paint()
|
|
|
+ ..colorFilter = ColorFilter.matrix(colorFilterMatrix)
|
|
|
+ ..filterQuality = FilterQuality.high);
|
|
|
canvas.restore();
|
|
|
}
|
|
|
|