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

Side by Side Diff: gm/bitmapcopy.cpp

Issue 227433009: Rename kPMColor_SkColorType to kN32_SkColorType. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 8 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 | « experimental/iOSSampleApp/SkSampleUIView.mm ('k') | gm/bitmapfilters.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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 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 #include "gm.h" 8 #include "gm.h"
9 9
10 namespace skiagm { 10 namespace skiagm {
11 11
12 static const char* gColorTypeNames[] = { 12 static const char* gColorTypeNames[] = {
13 "unknown", 13 "unknown",
14 "A8", 14 "A8",
15 "565", 15 "565",
16 "4444", 16 "4444",
17 "8888", 17 "8888",
18 "8888", 18 "8888",
19 "Index8", 19 "Index8",
20 }; 20 };
21 21
22 static const SkColorType gColorTypes[] = { 22 static const SkColorType gColorTypes[] = {
23 kRGB_565_SkColorType, 23 kRGB_565_SkColorType,
24 kARGB_4444_SkColorType, 24 kARGB_4444_SkColorType,
25 kPMColor_SkColorType, 25 kN32_SkColorType,
26 }; 26 };
27 27
28 #define NUM_CONFIGS SK_ARRAY_COUNT(gColorTypes) 28 #define NUM_CONFIGS SK_ARRAY_COUNT(gColorTypes)
29 29
30 static void draw_checks(SkCanvas* canvas, int width, int height) { 30 static void draw_checks(SkCanvas* canvas, int width, int height) {
31 SkPaint paint; 31 SkPaint paint;
32 paint.setColor(SK_ColorRED); 32 paint.setColor(SK_ColorRED);
33 canvas->drawRectCoords(SkIntToScalar(0), SkIntToScalar(0), 33 canvas->drawRectCoords(SkIntToScalar(0), SkIntToScalar(0),
34 SkIntToScalar(width / 2), SkIntToScalar(height / 2), paint); 34 SkIntToScalar(width / 2), SkIntToScalar(height / 2), paint);
35 paint.setColor(SK_ColorGREEN); 35 paint.setColor(SK_ColorGREEN);
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 private: 118 private:
119 typedef GM INHERITED; 119 typedef GM INHERITED;
120 }; 120 };
121 121
122 ////////////////////////////////////////////////////////////////////////////// 122 //////////////////////////////////////////////////////////////////////////////
123 123
124 static GM* MyFactory(void*) { return new BitmapCopyGM; } 124 static GM* MyFactory(void*) { return new BitmapCopyGM; }
125 static GMRegistry reg(MyFactory); 125 static GMRegistry reg(MyFactory);
126 } 126 }
OLDNEW
« no previous file with comments | « experimental/iOSSampleApp/SkSampleUIView.mm ('k') | gm/bitmapfilters.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698