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

Side by Side Diff: gm/giantbitmap.cpp

Issue 1014533004: SkPaint::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 unified diff | Download patch
« no previous file with comments | « gm/filterindiabox.cpp ('k') | gm/imagefiltersclipped.cpp » ('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 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "gm.h" 8 #include "gm.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkColorPriv.h" 10 #include "SkColorPriv.h"
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 // m.setRotate(SkIntToScalar(30), 0, 0); 102 // m.setRotate(SkIntToScalar(30), 0, 0);
103 m.setSkew(SK_Scalar1, 0, 0, 0); 103 m.setSkew(SK_Scalar1, 0, 0, 0);
104 // m.postScale(2*SK_Scalar1/3, 2*SK_Scalar1/3); 104 // m.postScale(2*SK_Scalar1/3, 2*SK_Scalar1/3);
105 } else { 105 } else {
106 SkScalar scale = 11*SK_Scalar1/12; 106 SkScalar scale = 11*SK_Scalar1/12;
107 m.setScale(scale, scale); 107 m.setScale(scale, scale);
108 } 108 }
109 SkShader* s = SkShader::CreateBitmapShader(getBitmap(), fMode, fMode, &m ); 109 SkShader* s = SkShader::CreateBitmapShader(getBitmap(), fMode, fMode, &m );
110 110
111 paint.setShader(s)->unref(); 111 paint.setShader(s)->unref();
112 paint.setFilterLevel(fDoFilter ? SkPaint::kLow_FilterLevel : SkPaint::kN one_FilterLevel); 112 paint.setFilterQuality(fDoFilter ? kLow_SkFilterQuality : kNone_SkFilter Quality);
113 113
114 canvas->translate(SkIntToScalar(50), SkIntToScalar(50)); 114 canvas->translate(SkIntToScalar(50), SkIntToScalar(50));
115 115
116 // SkRect r = SkRect::MakeXYWH(-50, -50, 32, 16); 116 // SkRect r = SkRect::MakeXYWH(-50, -50, 32, 16);
117 // canvas->drawRect(r, paint); return; 117 // canvas->drawRect(r, paint); return;
118 canvas->drawPaint(paint); 118 canvas->drawPaint(paint);
119 } 119 }
120 120
121 private: 121 private:
122 typedef GM INHERITED; 122 typedef GM INHERITED;
(...skipping 21 matching lines...) Expand all
144 static skiagm::GMRegistry reg010(G010); 144 static skiagm::GMRegistry reg010(G010);
145 static skiagm::GMRegistry reg110(G110); 145 static skiagm::GMRegistry reg110(G110);
146 static skiagm::GMRegistry reg210(G210); 146 static skiagm::GMRegistry reg210(G210);
147 147
148 static skiagm::GMRegistry reg001(G001); 148 static skiagm::GMRegistry reg001(G001);
149 static skiagm::GMRegistry reg101(G101); 149 static skiagm::GMRegistry reg101(G101);
150 static skiagm::GMRegistry reg201(G201); 150 static skiagm::GMRegistry reg201(G201);
151 static skiagm::GMRegistry reg011(G011); 151 static skiagm::GMRegistry reg011(G011);
152 static skiagm::GMRegistry reg111(G111); 152 static skiagm::GMRegistry reg111(G111);
153 static skiagm::GMRegistry reg211(G211); 153 static skiagm::GMRegistry reg211(G211);
OLDNEW
« no previous file with comments | « gm/filterindiabox.cpp ('k') | gm/imagefiltersclipped.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698