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

Unified Diff: debugger/QT/SkDebuggerGUI.cpp

Issue 1010023002: FilterLevel -> SkFilterQuality (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | debugger/QT/SkSettingsWidget.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: debugger/QT/SkDebuggerGUI.cpp
diff --git a/debugger/QT/SkDebuggerGUI.cpp b/debugger/QT/SkDebuggerGUI.cpp
index 01d8c665e35ce8877a12d1e1831793d0723c4c1a..a8d8f14c21715e6a34419ae777543135a7556e77 100644
--- a/debugger/QT/SkDebuggerGUI.cpp
+++ b/debugger/QT/SkDebuggerGUI.cpp
@@ -292,9 +292,9 @@ void SkDebuggerGUI::actionVisualizationsChanged() {
}
void SkDebuggerGUI::actionTextureFilter() {
- SkPaint::FilterLevel level;
- bool enabled = fSettingsWidget.getFilterOverride(&level);
- fDebugger.setTexFilterOverride(enabled, level);
+ SkFilterQuality quality;
+ bool enabled = fSettingsWidget.getFilterOverride(&quality);
+ fDebugger.setTexFilterOverride(enabled, quality);
fCanvasWidget.update();
}
« no previous file with comments | « no previous file | debugger/QT/SkSettingsWidget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698