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

Side by Side Diff: src/codec/SkMasks.h

Issue 1258863008: Split SkBmpCodec into three separate classes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « src/codec/SkMaskSwizzler.h ('k') | no next file » | 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 2015 Google Inc. 2 * Copyright 2015 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 #ifndef SkMasks_DEFINED
8 #define SkMasks_DEFINED
9
7 #include "SkTypes.h" 10 #include "SkTypes.h"
8 11
9 /* 12 /*
10 * 13 *
11 * Contains useful mask routines for SkMaskSwizzler 14 * Contains useful mask routines for SkMaskSwizzler
12 * 15 *
13 */ 16 */
14 class SkMasks { 17 class SkMasks {
15 public: 18 public:
16 19
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 * 75 *
73 */ 76 */
74 SkMasks(const MaskInfo red, const MaskInfo green, const MaskInfo blue, 77 SkMasks(const MaskInfo red, const MaskInfo green, const MaskInfo blue,
75 const MaskInfo alpha); 78 const MaskInfo alpha);
76 79
77 const MaskInfo fRed; 80 const MaskInfo fRed;
78 const MaskInfo fGreen; 81 const MaskInfo fGreen;
79 const MaskInfo fBlue; 82 const MaskInfo fBlue;
80 const MaskInfo fAlpha; 83 const MaskInfo fAlpha;
81 }; 84 };
85
86 #endif
OLDNEW
« no previous file with comments | « src/codec/SkMaskSwizzler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698