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

Commit a1c3fdfb authored by Chris Craik's avatar Chris Craik Committed by Android Git Automerger
Browse files

am 3f454e7d: am 63c7b246: Merge "Correct layer size formatting in trace" into...

am 3f454e7d: am 63c7b246: Merge "Correct layer size formatting in trace" into lmp-mr1-dev automerge: 00905a98

* commit '3f454e7d':
  Correct layer size formatting in trace
parents 10c9c668 3f454e7d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -430,9 +430,9 @@ void RenderNode::setViewProperties(OpenGLRenderer& renderer, T& handler) {
                clipFlags = 0; // all clipping done by saveLayer
            }

            ATRACE_FORMAT("%s alpha caused %ssaveLayer %ux%u",
            ATRACE_FORMAT("%s alpha caused %ssaveLayer %dx%d",
                    getName(), clipFlags ? "" : "unclipped ",
                    layerBounds.getWidth(), layerBounds.getHeight());
                    (int)layerBounds.getWidth(), (int)layerBounds.getHeight());

            SaveLayerOp* op = new (handler.allocator()) SaveLayerOp(
                    layerBounds.left, layerBounds.top, layerBounds.right, layerBounds.bottom,