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

Commit c2379070 authored by Chris Craik's avatar Chris Craik
Browse files

Correct layer size formatting in trace

bug:18722704
Change-Id: Icef9aaa62633b2d86ad250f43d4c8fa5cc0b6842
parent 596d4e72
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -429,9 +429,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,