Fix nine-patches to always filter

Regression was introduced here:
c2dbc03acc

Bug: 176691890
Test: I1336d7e70f0e46e57023d7e0b8331ba7cba137ac

Change-Id: I8153f1d6ecd850953369dd664da88915c3842bb5
(cherry picked from commit 0e540d057c)
Merged-In: I8153f1d6ecd850953369dd664da88915c3842bb5
Merged-In: I16f5aaff99ad6d2b6813a75ddbb4c97beb7aa2d8
This commit is contained in:
Mike Reed
2021-01-15 14:27:02 -05:00
committed by Leon Scroggins
parent 27ea4217af
commit da20330b35

View File

@@ -301,7 +301,8 @@ void SkiaRecordingCanvas::drawNinePatch(Bitmap& bitmap, const Res_png_9patch& ch
}
sk_sp<SkImage> image = bitmap.makeImage();
applyLooper(get_looper(paint), *filterBitmap(paint), [&](SkScalar x, SkScalar y, const SkPaint& p) {
applyLooper(get_looper(paint), *filterBitmap(*filteredPaint), [&](SkScalar x, SkScalar y,
const SkPaint& p) {
mRecorder.drawImageLattice(image, lattice, dst.makeOffset(x, y), &p, bitmap.palette());
});