Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21f61b7d authored by John Reck's avatar John Reck Committed by Android (Google) Code Review
Browse files

Merge "Fix logging" into lmp-dev

parents 84cca777 5cdb8f99
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ void CanvasContext::draw() {
    } else if (!mDirtyRegionsEnabled || mHaveNewSurface) {
        dirty.setEmpty();
    } else {
        if (!dirty.intersect(0, 0, width, height)) {
        if (!dirty.isEmpty() && !dirty.intersect(0, 0, width, height)) {
            ALOGW("Dirty " RECT_STRING " doesn't intersect with 0 0 %d %d ?",
                    SK_RECT_ARGS(dirty), width, height);
            dirty.setEmpty();