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

Side by Side Diff: debugger/QT/SkSettingsWidget.h

Issue 1753813002: Unbust the old debugger (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « debugger/QT/SkRasterWidget.cpp ('k') | gyp/common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SKSETTINGSWIDGET_H_ 10 #ifndef SKSETTINGSWIDGET_H_
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 } 74 }
75 75
76 bool isMegaVizEnabled() { 76 bool isMegaVizEnabled() {
77 return fMegaVizCheckBox.isChecked(); 77 return fMegaVizCheckBox.isChecked();
78 } 78 }
79 79
80 bool isPathOpsEnabled() { 80 bool isPathOpsEnabled() {
81 return fPathOpsCheckBox.isChecked(); 81 return fPathOpsCheckBox.isChecked();
82 } 82 }
83 83
84 private slots: 84 private Q_SLOTS:
85 85
86 signals: 86 Q_SIGNALS:
87 void visualizationsChanged(); 87 void visualizationsChanged();
88 void texFilterSettingsChanged(); 88 void texFilterSettingsChanged();
89 #if SK_SUPPORT_GPU 89 #if SK_SUPPORT_GPU
90 void glSettingsChanged(); 90 void glSettingsChanged();
91 #endif 91 #endif
92 void rasterSettingsChanged(); 92 void rasterSettingsChanged();
93 93
94 private: 94 private:
95 QFormLayout fVerticalLayout; 95 QFormLayout fVerticalLayout;
96 96
(...skipping 10 matching lines...) Expand all
107 #if SK_SUPPORT_GPU 107 #if SK_SUPPORT_GPU
108 QGroupBox fGLGroup; 108 QGroupBox fGLGroup;
109 QFormLayout fGLLayout; 109 QFormLayout fGLLayout;
110 QComboBox fGLMSAACombo; 110 QComboBox fGLMSAACombo;
111 #endif 111 #endif
112 112
113 QComboBox fFilterCombo; 113 QComboBox fFilterCombo;
114 }; 114 };
115 115
116 #endif /* SKSETTINGSWIDGET_H_ */ 116 #endif /* SKSETTINGSWIDGET_H_ */
OLDNEW
« no previous file with comments | « debugger/QT/SkRasterWidget.cpp ('k') | gyp/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698