зеркало из https://github.com/mozilla/pjs.git
Bug 637852. Part 12: Dump layer trees and display lists to stdout instead of stderr so that they stay in order with window.dump() and other output. r=tnikkel
This commit is contained in:
Родитель
97960f031f
Коммит
a034a797ad
|
@ -2101,7 +2101,7 @@ void
|
|||
FrameLayerBuilder::DumpRetainedLayerTree()
|
||||
{
|
||||
if (mRetainingManager) {
|
||||
mRetainingManager->Dump(stderr);
|
||||
mRetainingManager->Dump(stdout);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -213,7 +213,7 @@ void
|
|||
nsFrame::PrintDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsDisplayList& aList)
|
||||
{
|
||||
PrintDisplayListTo(aBuilder, aList, 0, stderr);
|
||||
PrintDisplayListTo(aBuilder, aList, 0, stdout);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1292,7 +1292,7 @@ nsLayoutUtils::GetFramesForArea(nsIFrame* aFrame, const nsRect& aRect,
|
|||
|
||||
#ifdef DEBUG
|
||||
if (gDumpEventList) {
|
||||
fprintf(stderr, "Event handling --- (%d,%d):\n", aRect.x, aRect.y);
|
||||
fprintf(stdout, "Event handling --- (%d,%d):\n", aRect.x, aRect.y);
|
||||
nsFrame::PrintDisplayList(&builder, list);
|
||||
}
|
||||
#endif
|
||||
|
@ -1601,7 +1601,7 @@ nsLayoutUtils::PaintFrame(nsRenderingContext* aRenderingContext, nsIFrame* aFram
|
|||
|
||||
#ifdef DEBUG
|
||||
if (gDumpPaintList) {
|
||||
fprintf(stderr, "Painting --- before optimization (dirty %d,%d,%d,%d):\n",
|
||||
fprintf(stdout, "Painting --- before optimization (dirty %d,%d,%d,%d):\n",
|
||||
dirtyRect.x, dirtyRect.y, dirtyRect.width, dirtyRect.height);
|
||||
nsFrame::PrintDisplayList(&builder, list);
|
||||
}
|
||||
|
@ -1653,10 +1653,10 @@ nsLayoutUtils::PaintFrame(nsRenderingContext* aRenderingContext, nsIFrame* aFram
|
|||
|
||||
#ifdef DEBUG
|
||||
if (gDumpPaintList) {
|
||||
fprintf(stderr, "Painting --- after optimization:\n");
|
||||
fprintf(stdout, "Painting --- after optimization:\n");
|
||||
nsFrame::PrintDisplayList(&builder, list);
|
||||
|
||||
fprintf(stderr, "Painting --- retained layer tree:\n");
|
||||
fprintf(stdout, "Painting --- retained layer tree:\n");
|
||||
builder.LayerBuilder()->DumpRetainedLayerTree();
|
||||
}
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче