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

Side by Side Diff: gm/rrects.cpp

Issue 281383013: skiagm::make_isize -> SkISize::Make (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 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/roundrects.cpp ('k') | gm/samplerstress.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 2012 Google Inc. 2 * Copyright 2012 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 #if SK_SUPPORT_GPU 9 #if SK_SUPPORT_GPU
10 #include "GrTest.h" 10 #include "GrTest.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 case kAA_Clip_Type: 47 case kAA_Clip_Type:
48 name.append("_clip_aa"); 48 name.append("_clip_aa");
49 break; 49 break;
50 case kEffect_Type: 50 case kEffect_Type:
51 name.append("_effect"); 51 name.append("_effect");
52 break; 52 break;
53 } 53 }
54 return name; 54 return name;
55 } 55 }
56 56
57 virtual SkISize onISize() SK_OVERRIDE { return make_isize(kImageWidth, kImag eHeight); } 57 virtual SkISize onISize() SK_OVERRIDE {
58 return SkISize::Make(kImageWidth, kImageHeight);
59 }
58 60
59 virtual uint32_t onGetFlags() const SK_OVERRIDE { 61 virtual uint32_t onGetFlags() const SK_OVERRIDE {
60 if (kEffect_Type == fType) { 62 if (kEffect_Type == fType) {
61 return kGPUOnly_Flag | kSkipTiled_Flag; 63 return kGPUOnly_Flag | kSkipTiled_Flag;
62 } else { 64 } else {
63 return kSkipTiled_Flag; 65 return kSkipTiled_Flag;
64 } 66 }
65 } 67 }
66 68
67 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { 69 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 263
262 DEF_GM( return new RRectGM(RRectGM::kAA_Draw_Type); ) 264 DEF_GM( return new RRectGM(RRectGM::kAA_Draw_Type); )
263 DEF_GM( return new RRectGM(RRectGM::kBW_Draw_Type); ) 265 DEF_GM( return new RRectGM(RRectGM::kBW_Draw_Type); )
264 DEF_GM( return new RRectGM(RRectGM::kAA_Clip_Type); ) 266 DEF_GM( return new RRectGM(RRectGM::kAA_Clip_Type); )
265 DEF_GM( return new RRectGM(RRectGM::kBW_Clip_Type); ) 267 DEF_GM( return new RRectGM(RRectGM::kBW_Clip_Type); )
266 #if SK_SUPPORT_GPU 268 #if SK_SUPPORT_GPU
267 DEF_GM( return new RRectGM(RRectGM::kEffect_Type); ) 269 DEF_GM( return new RRectGM(RRectGM::kEffect_Type); )
268 #endif 270 #endif
269 271
270 } 272 }
OLDNEW
« no previous file with comments | « gm/roundrects.cpp ('k') | gm/samplerstress.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698