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

Side by Side Diff: gm/aarectmodes.cpp

Issue 1262703002: make tests portable by using 565 compatible colors (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix dstreadshuffle text portable gm Created 5 years, 4 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/aaclip.cpp ('k') | gm/addarc.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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 W / 2, H / 2); 103 W / 2, H / 2);
104 canvas->drawRect(rect, paint); 104 canvas->drawRect(rect, paint);
105 105
106 return H; 106 return H;
107 } 107 }
108 108
109 static SkShader* make_bg_shader() { 109 static SkShader* make_bg_shader() {
110 SkBitmap bm; 110 SkBitmap bm;
111 bm.allocN32Pixels(2, 2); 111 bm.allocN32Pixels(2, 2);
112 *bm.getAddr32(0, 0) = *bm.getAddr32(1, 1) = 0xFFFFFFFF; 112 *bm.getAddr32(0, 0) = *bm.getAddr32(1, 1) = 0xFFFFFFFF;
113 *bm.getAddr32(1, 0) = *bm.getAddr32(0, 1) = SkPackARGB32(0xFF, 0xCC, 113 *bm.getAddr32(1, 0) = *bm.getAddr32(0, 1) = SkPackARGB32(0xFF, 0xCE,
114 0xCC, 0xCC); 114 0xCF, 0xCE);
115 115
116 const SkMatrix m = SkMatrix::MakeScale(SkIntToScalar(6), SkIntToScalar(6)); 116 const SkMatrix m = SkMatrix::MakeScale(SkIntToScalar(6), SkIntToScalar(6));
117 SkShader* s = SkShader::CreateBitmapShader(bm, 117 SkShader* s = SkShader::CreateBitmapShader(bm,
118 SkShader::kRepeat_TileMode, 118 SkShader::kRepeat_TileMode,
119 SkShader::kRepeat_TileMode, 119 SkShader::kRepeat_TileMode,
120 &m); 120 &m);
121 121
122 return s; 122 return s;
123 } 123 }
124 124
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 private: 178 private:
179 typedef GM INHERITED; 179 typedef GM INHERITED;
180 }; 180 };
181 181
182 ////////////////////////////////////////////////////////////////////////////// 182 //////////////////////////////////////////////////////////////////////////////
183 183
184 static GM* MyFactory(void*) { return new AARectModesGM; } 184 static GM* MyFactory(void*) { return new AARectModesGM; }
185 static GMRegistry reg(MyFactory); 185 static GMRegistry reg(MyFactory);
186 186
187 } 187 }
OLDNEW
« no previous file with comments | « gm/aaclip.cpp ('k') | gm/addarc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698