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

Side by Side Diff: include/gpu/SkGr.h

Issue 108773003: remvoe duplicate impl for SkImageInfo flattening (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « include/gpu/GrSurface.h ('k') | include/gpu/SkGrPixelRef.h » ('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 2010 Google Inc. 3 * Copyright 2010 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 8
9 9
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 /////////////////////////////////////////////////////////////////////////////// 44 ///////////////////////////////////////////////////////////////////////////////
45 45
46 #include "SkColorPriv.h" 46 #include "SkColorPriv.h"
47 47
48 /** 48 /**
49 * Convert the SkBitmap::Config to the corresponding PixelConfig, or 49 * Convert the SkBitmap::Config to the corresponding PixelConfig, or
50 * kUnknown_PixelConfig if the conversion cannot be done. 50 * kUnknown_PixelConfig if the conversion cannot be done.
51 */ 51 */
52 GrPixelConfig SkBitmapConfig2GrPixelConfig(SkBitmap::Config); 52 GrPixelConfig SkBitmapConfig2GrPixelConfig(SkBitmap::Config);
53 bool GrPixelConfig2ColorType(GrPixelConfig, SkColorType*);
53 54
54 static inline GrColor SkColor2GrColor(SkColor c) { 55 static inline GrColor SkColor2GrColor(SkColor c) {
55 SkPMColor pm = SkPreMultiplyColor(c); 56 SkPMColor pm = SkPreMultiplyColor(c);
56 unsigned r = SkGetPackedR32(pm); 57 unsigned r = SkGetPackedR32(pm);
57 unsigned g = SkGetPackedG32(pm); 58 unsigned g = SkGetPackedG32(pm);
58 unsigned b = SkGetPackedB32(pm); 59 unsigned b = SkGetPackedB32(pm);
59 unsigned a = SkGetPackedA32(pm); 60 unsigned a = SkGetPackedA32(pm);
60 return GrColorPackRGBA(r, g, b, a); 61 return GrColorPackRGBA(r, g, b, a);
61 } 62 }
62 63
(...skipping 25 matching lines...) Expand all
88 89
89 private: 90 private:
90 SkGlyphCache* fStrike; 91 SkGlyphCache* fStrike;
91 GrKey* fKey; 92 GrKey* fKey;
92 // DECLARE_INSTANCE_COUNTER(SkGrFontScaler); 93 // DECLARE_INSTANCE_COUNTER(SkGrFontScaler);
93 }; 94 };
94 95
95 //////////////////////////////////////////////////////////////////////////////// 96 ////////////////////////////////////////////////////////////////////////////////
96 97
97 #endif 98 #endif
OLDNEW
« no previous file with comments | « include/gpu/GrSurface.h ('k') | include/gpu/SkGrPixelRef.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698