Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3531)

Unified Diff: debugger/QT/SkSettingsWidget.cpp

Issue 185293007: Add visualization of clips to debugger (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « debugger/QT/SkSettingsWidget.h ('k') | debugger/SkDebugger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: debugger/QT/SkSettingsWidget.cpp
===================================================================
--- debugger/QT/SkSettingsWidget.cpp (revision 13635)
+++ debugger/QT/SkSettingsWidget.cpp (working copy)
@@ -62,6 +62,10 @@
fOverdrawVizLabel.setMinimumWidth(178);
fOverdrawVizLabel.setMaximumWidth(178);
+ fMegaVizLabel.setText(" Mega Viz: ");
+ fMegaVizLabel.setMinimumWidth(178);
+ fMegaVizLabel.setMaximumWidth(178);
+
#if SK_SUPPORT_GPU
fGLLabel.setText("OpenGL: ");
fGLLabel.setMinimumWidth(178);
@@ -109,8 +113,10 @@
fRasterLayout.addWidget(&fRasterLabel);
fRasterLayout.addWidget(&fRasterCheckBox);
- fOverdrawVizLayout.addWidget(&fOverdrawVizLabel);
- fOverdrawVizLayout.addWidget(&fOverdrawVizCheckBox);
+ fVizLayout.addWidget(&fOverdrawVizLabel);
+ fVizLayout.addWidget(&fOverdrawVizCheckBox);
+ fVizLayout.addWidget(&fMegaVizLabel);
+ fVizLayout.addWidget(&fMegaVizCheckBox);
#if SK_SUPPORT_GPU
fGLLayout.addWidget(&fGLLabel);
@@ -120,7 +126,7 @@
fCanvasLayout.setSpacing(6);
fCanvasLayout.setContentsMargins(11,11,11,11);
fCanvasLayout.addLayout(&fRasterLayout);
- fCanvasLayout.addLayout(&fOverdrawVizLayout);
+ fCanvasLayout.addLayout(&fVizLayout);
#if SK_SUPPORT_GPU
fCanvasLayout.addLayout(&fGLLayout);
fCanvasLayout.addWidget(&fGLMSAAButtonGroup);
« no previous file with comments | « debugger/QT/SkSettingsWidget.h ('k') | debugger/SkDebugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698