reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2010 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 8 | #ifndef SkGr_DEFINED |
| 9 | #define SkGr_DEFINED |
| 10 | |
bsalomon | f276ac5 | 2015-10-09 13:36:42 -0700 | [diff] [blame] | 11 | #include "GrColor.h" |
joshualitt | 9bc3954 | 2015-08-12 12:57:54 -0700 | [diff] [blame] | 12 | #include "GrTextureAccess.h" |
bsalomon | f276ac5 | 2015-10-09 13:36:42 -0700 | [diff] [blame] | 13 | #include "SkColor.h" |
| 14 | #include "SkColorPriv.h" |
| 15 | #include "SkFilterQuality.h" |
| 16 | #include "SkImageInfo.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 17 | |
bsalomon | f276ac5 | 2015-10-09 13:36:42 -0700 | [diff] [blame] | 18 | class GrContext; |
| 19 | class GrTexture; |
| 20 | class GrTextureParams; |
| 21 | class SkBitmap; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 22 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 23 | //////////////////////////////////////////////////////////////////////////////// |
| 24 | // Sk to Gr Type conversions |
| 25 | |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 26 | static inline GrColor SkColorToPremulGrColor(SkColor c) { |
rileya@google.com | 24f3ad1 | 2012-07-18 21:47:40 +0000 | [diff] [blame] | 27 | SkPMColor pm = SkPreMultiplyColor(c); |
| 28 | unsigned r = SkGetPackedR32(pm); |
| 29 | unsigned g = SkGetPackedG32(pm); |
| 30 | unsigned b = SkGetPackedB32(pm); |
| 31 | unsigned a = SkGetPackedA32(pm); |
| 32 | return GrColorPackRGBA(r, g, b, a); |
| 33 | } |
| 34 | |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 35 | static inline GrColor SkColorToUnpremulGrColor(SkColor c) { |
| 36 | unsigned r = SkColorGetR(c); |
| 37 | unsigned g = SkColorGetG(c); |
| 38 | unsigned b = SkColorGetB(c); |
| 39 | unsigned a = SkColorGetA(c); |
| 40 | return GrColorPackRGBA(r, g, b, a); |
| 41 | } |
| 42 | |
| 43 | static inline GrColor SkColorToOpaqueGrColor(SkColor c) { |
| 44 | unsigned r = SkColorGetR(c); |
| 45 | unsigned g = SkColorGetG(c); |
| 46 | unsigned b = SkColorGetB(c); |
| 47 | return GrColorPackRGBA(r, g, b, 0xFF); |
| 48 | } |
| 49 | |
| 50 | /** Replicates the SkColor's alpha to all four channels of the GrColor. */ |
| 51 | static inline GrColor SkColorAlphaToGrColor(SkColor c) { |
dandov | 9de5b51 | 2014-06-10 14:38:28 -0700 | [diff] [blame] | 52 | U8CPU a = SkColorGetA(c); |
| 53 | return GrColorPackRGBA(a, a, a, a); |
| 54 | } |
| 55 | |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 56 | static inline SkPMColor GrColorToSkPMColor(GrColor c) { |
| 57 | GrColorIsPMAssert(c); |
| 58 | return SkPackARGB32(GrColorUnpackA(c), GrColorUnpackR(c), GrColorUnpackG(c), GrColorUnpackB(c)); |
| 59 | } |
| 60 | |
| 61 | static inline GrColor SkPMColorToGrColor(SkPMColor c) { |
| 62 | return GrColorPackRGBA(SkGetPackedR32(c), SkGetPackedG32(c), SkGetPackedB32(c), |
| 63 | SkGetPackedA32(c)); |
| 64 | } |
| 65 | |
rileya@google.com | 24f3ad1 | 2012-07-18 21:47:40 +0000 | [diff] [blame] | 66 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 67 | /** Returns a texture representing the bitmap that is compatible with the GrTextureParams. The |
| 68 | texture is inserted into the cache (unless the bitmap is marked volatile) and can be |
| 69 | retrieved again via this function. */ |
Brian Salomon | bc0bcc0 | 2015-10-19 15:12:32 -0400 | [diff] [blame] | 70 | GrTexture* GrRefCachedBitmapTexture(GrContext*, const SkBitmap&, const GrTextureParams&); |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 71 | |
bsalomon | f276ac5 | 2015-10-09 13:36:42 -0700 | [diff] [blame] | 72 | // TODO: Move SkImageInfo2GrPixelConfig to SkGrPriv.h (requires cleanup to SkWindow its subclasses). |
| 73 | GrPixelConfig SkImageInfo2GrPixelConfig(SkColorType, SkAlphaType, SkColorProfileType); |
| 74 | |
| 75 | static inline GrPixelConfig SkImageInfo2GrPixelConfig(const SkImageInfo& info) { |
| 76 | return SkImageInfo2GrPixelConfig(info.colorType(), info.alphaType(), info.profileType()); |
| 77 | } |
| 78 | |
| 79 | GrTextureParams::FilterMode GrSkFilterQualityToGrFilterMode(SkFilterQuality paintFilterQuality, |
| 80 | const SkMatrix& viewM, |
| 81 | const SkMatrix& localM, |
| 82 | bool* doBicubic); |
reed | 43fe618 | 2015-09-08 08:37:36 -0700 | [diff] [blame] | 83 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 84 | //////////////////////////////////////////////////////////////////////////////// |
commit-bot@chromium.org | 8dcff64 | 2014-05-15 20:32:48 +0000 | [diff] [blame] | 85 | |
reed | 8b26b99 | 2015-05-07 15:36:17 -0700 | [diff] [blame] | 86 | SkImageInfo GrMakeInfoFromTexture(GrTexture* tex, int w, int h, bool isOpaque); |
| 87 | |
| 88 | // Using the dreaded SkGrPixelRef ... |
bsalomon | cb1ccfd | 2015-09-09 14:51:52 -0700 | [diff] [blame] | 89 | SK_API void GrWrapTextureInBitmap(GrTexture* src, int w, int h, bool isOpaque, |
| 90 | SkBitmap* dst); |
reed | 8b26b99 | 2015-05-07 15:36:17 -0700 | [diff] [blame] | 91 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 92 | #endif |