From b1a30b1cb4391641274e792c0999c8d7fa95916d Mon Sep 17 00:00:00 2001 From: Jeff Muizelaar Date: Fri, 21 Sep 2018 12:56:53 +0000 Subject: [PATCH] Bug 1492615. Improve logging even more r=mstange Differential Revision: https://phabricator.services.mozilla.com/D6432 --HG-- extra : moz-landing-system : lando --- gfx/layers/wr/WebRenderCommandBuilder.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gfx/layers/wr/WebRenderCommandBuilder.cpp b/gfx/layers/wr/WebRenderCommandBuilder.cpp index 0519c2baa3448..32cc0c1e88b0c 100644 --- a/gfx/layers/wr/WebRenderCommandBuilder.cpp +++ b/gfx/layers/wr/WebRenderCommandBuilder.cpp @@ -1188,22 +1188,22 @@ WebRenderCommandBuilder::DoGroupingForDisplayList(nsDisplayList* aList, GP("Property change. Deleting blob\n"); if (group.mAppUnitsPerDevPixel != appUnitsPerDevPixel) { - GP(" app unit change%d %d\n", group.mAppUnitsPerDevPixel, appUnitsPerDevPixel); + GP(" App unit change %d -> %d\n", group.mAppUnitsPerDevPixel, appUnitsPerDevPixel); } // The bounds have changed so we need to discard the old image and add all // the commands again. auto p = group.mGroupBounds; auto q = groupBounds; if (!group.mGroupBounds.IsEqualEdges(groupBounds)) { - GP(" Bounds change: %d %d %d %d vs %d %d %d %d\n", p.x, p.y, p.width, p.height, q.x, q.y, q.width, q.height); + GP(" Bounds change: %d %d %d %d -> %d %d %d %d\n", p.x, p.y, p.width, p.height, q.x, q.y, q.width, q.height); } if (group.mScale != scale) { - GP(" Scale %f %f vs %f %f\n", group.mScale.width, group.mScale.height, scale.width, scale.height); + GP(" Scale %f %f -> %f %f\n", group.mScale.width, group.mScale.height, scale.width, scale.height); } if (group.mResidualOffset != residualOffset) { - GP(" Residual Offset %f %f vs %f %f\n", group.mResidualOffset.x, group.mResidualOffset.y, residualOffset.x, residualOffset.y); + GP(" Residual Offset %f %f -> %f %f\n", group.mResidualOffset.x, group.mResidualOffset.y, residualOffset.x, residualOffset.y); } group.ClearItems();