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

Commit 6ca2b062 authored by Romain Guy's avatar Romain Guy Committed by Android (Google) Code Review
Browse files

Merge "Correctly dump DrawPatch operations in display lists"

parents 93eb09b8 a62f1722
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -382,12 +382,13 @@ void DisplayList::output(OpenGLRenderer& renderer, uint32_t level) {
                xDivs = getInts(xDivsCount);
                yDivs = getInts(yDivsCount);
                colors = getUInts(numColors);
                DISPLAY_LIST_LOGD("%s%s", (char*) indent, OP_NAMES[op]);
                getFloat();
                getFloat();
                getFloat();
                getFloat();
                getPaint();
                float left = getFloat();
                float top = getFloat();
                float right = getFloat();
                float bottom = getFloat();
                SkPaint* paint = getPaint();
                LOGD("%s%s %.2f, %.2f, %.2f, %.2f", (char*) indent, OP_NAMES[op],
                        left, top, right, bottom);
            }
            break;
            case DrawColor: {