reed | 8f34372 | 2015-08-13 13:32:39 -0700 | [diff] [blame] | 1 | /* |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 2 | * Copyright 2017 Google Inc. |
reed | 8f34372 | 2015-08-13 13:32:39 -0700 | [diff] [blame] | 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 8 | #ifndef SkGr_DEFINED |
| 9 | #define SkGr_DEFINED |
reed | 8f34372 | 2015-08-13 13:32:39 -0700 | [diff] [blame] | 10 | |
Ethan Nicholas | 052fd51 | 2017-01-27 15:34:34 +0000 | [diff] [blame] | 11 | #include "GrBlend.h" |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 12 | #include "GrColor.h" |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 13 | #include "GrSamplerState.h" |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 14 | #include "GrTypes.h" |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 15 | #include "SkBlendModePriv.h" |
Brian Salomon | 199fb87 | 2017-02-06 09:41:10 -0500 | [diff] [blame] | 16 | #include "SkCanvas.h" |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 17 | #include "SkColor.h" |
Cary Clark | a4083c9 | 2017-09-15 11:59:23 -0400 | [diff] [blame] | 18 | #include "SkColorData.h" |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 19 | #include "SkFilterQuality.h" |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 20 | #include "SkImageInfo.h" |
bsalomon | afa95e2 | 2015-10-12 10:39:46 -0700 | [diff] [blame] | 21 | #include "SkMatrix.h" |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 22 | #include "SkPM4f.h" |
Mike Reed | 887cdf1 | 2017-04-03 11:11:09 -0400 | [diff] [blame] | 23 | #include "SkVertices.h" |
reed | 8f34372 | 2015-08-13 13:32:39 -0700 | [diff] [blame] | 24 | |
| 25 | class GrCaps; |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 26 | class GrColorSpaceInfo; |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 27 | class GrColorSpaceXform; |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 28 | class GrContext; |
| 29 | class GrFragmentProcessor; |
| 30 | class GrPaint; |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 31 | class GrResourceProvider; |
Robert Phillips | e14d305 | 2017-02-15 13:18:21 -0500 | [diff] [blame] | 32 | class GrTextureProxy; |
reed | 8f34372 | 2015-08-13 13:32:39 -0700 | [diff] [blame] | 33 | class GrUniqueKey; |
Brian Salomon | 6f1d36c | 2017-01-13 12:02:17 -0500 | [diff] [blame] | 34 | class SkBitmap; |
bsalomon | afa95e2 | 2015-10-12 10:39:46 -0700 | [diff] [blame] | 35 | class SkData; |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 36 | class SkPaint; |
bsalomon | afa95e2 | 2015-10-12 10:39:46 -0700 | [diff] [blame] | 37 | class SkPixelRef; |
Brian Salomon | 6f1d36c | 2017-01-13 12:02:17 -0500 | [diff] [blame] | 38 | class SkPixmap; |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 39 | struct SkIRect; |
reed | 8f34372 | 2015-08-13 13:32:39 -0700 | [diff] [blame] | 40 | |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 41 | //////////////////////////////////////////////////////////////////////////////// |
| 42 | // Color type conversions |
reed | 856e9d9 | 2015-09-30 12:21:45 -0700 | [diff] [blame] | 43 | |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 44 | static inline GrColor SkColorToPremulGrColor(SkColor c) { |
| 45 | SkPMColor pm = SkPreMultiplyColor(c); |
| 46 | unsigned r = SkGetPackedR32(pm); |
| 47 | unsigned g = SkGetPackedG32(pm); |
| 48 | unsigned b = SkGetPackedB32(pm); |
| 49 | unsigned a = SkGetPackedA32(pm); |
| 50 | return GrColorPackRGBA(r, g, b, a); |
| 51 | } |
| 52 | |
| 53 | static inline GrColor SkColorToUnpremulGrColor(SkColor c) { |
| 54 | unsigned r = SkColorGetR(c); |
| 55 | unsigned g = SkColorGetG(c); |
| 56 | unsigned b = SkColorGetB(c); |
| 57 | unsigned a = SkColorGetA(c); |
| 58 | return GrColorPackRGBA(r, g, b, a); |
| 59 | } |
| 60 | |
Brian Salomon | 4cbb6e6 | 2017-10-25 15:12:19 -0400 | [diff] [blame] | 61 | /** Transform an SkColor (sRGB bytes) to GrColor4f for the specified color space info. */ |
| 62 | GrColor4f SkColorToPremulGrColor4f(SkColor, const GrColorSpaceInfo&); |
| 63 | GrColor4f SkColorToPremulGrColor4fLegacy(SkColor); |
| 64 | GrColor4f SkColorToUnpremulGrColor4f(SkColor, const GrColorSpaceInfo&); |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 65 | |
| 66 | /** Replicates the SkColor's alpha to all four channels of the GrColor. */ |
| 67 | static inline GrColor SkColorAlphaToGrColor(SkColor c) { |
| 68 | U8CPU a = SkColorGetA(c); |
| 69 | return GrColorPackRGBA(a, a, a, a); |
| 70 | } |
| 71 | |
| 72 | ////////////////////////////////////////////////////////////////////////////// |
| 73 | |
| 74 | static inline SkPM4f GrColor4fToSkPM4f(const GrColor4f& c) { |
| 75 | SkPM4f pm4f; |
| 76 | pm4f.fVec[SkPM4f::R] = c.fRGBA[0]; |
| 77 | pm4f.fVec[SkPM4f::G] = c.fRGBA[1]; |
| 78 | pm4f.fVec[SkPM4f::B] = c.fRGBA[2]; |
| 79 | pm4f.fVec[SkPM4f::A] = c.fRGBA[3]; |
| 80 | return pm4f; |
| 81 | } |
| 82 | |
| 83 | static inline GrColor4f SkPM4fToGrColor4f(const SkPM4f& c) { |
| 84 | return GrColor4f{c.r(), c.g(), c.b(), c.a()}; |
| 85 | } |
| 86 | |
| 87 | //////////////////////////////////////////////////////////////////////////////// |
| 88 | // Paint conversion |
bsalomon | c55271f | 2015-11-09 11:55:57 -0800 | [diff] [blame] | 89 | |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 90 | /** Converts an SkPaint to a GrPaint for a given GrContext. The matrix is required in order |
bsalomon | aa48d36 | 2015-10-01 08:34:17 -0700 | [diff] [blame] | 91 | to convert the SkShader (if any) on the SkPaint. The primitive itself has no color. */ |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 92 | bool SkPaintToGrPaint(GrContext*, |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 93 | const GrColorSpaceInfo& dstColorSpaceInfo, |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 94 | const SkPaint& skPaint, |
| 95 | const SkMatrix& viewM, |
| 96 | GrPaint* grPaint); |
| 97 | |
bsalomon | aa48d36 | 2015-10-01 08:34:17 -0700 | [diff] [blame] | 98 | /** Same as above but ignores the SkShader (if any) on skPaint. */ |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 99 | bool SkPaintToGrPaintNoShader(GrContext* context, |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 100 | const GrColorSpaceInfo& dstColorSpaceInfo, |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 101 | const SkPaint& skPaint, |
| 102 | GrPaint* grPaint); |
| 103 | |
| 104 | /** Replaces the SkShader (if any) on skPaint with the passed in GrFragmentProcessor. The processor |
bsalomon | aa48d36 | 2015-10-01 08:34:17 -0700 | [diff] [blame] | 105 | should expect an unpremul input color and produce a premultiplied output color. There is |
| 106 | no primitive color. */ |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 107 | bool SkPaintToGrPaintReplaceShader(GrContext*, |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 108 | const GrColorSpaceInfo& dstColorSpaceInfo, |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 109 | const SkPaint& skPaint, |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 110 | std::unique_ptr<GrFragmentProcessor> shaderFP, |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 111 | GrPaint* grPaint); |
| 112 | |
| 113 | /** Blends the SkPaint's shader (or color if no shader) with the color which specified via a |
Mike Reed | 185ba21 | 2017-04-28 12:31:05 -0400 | [diff] [blame] | 114 | GrOp's GrPrimitiveProcesssor. */ |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 115 | bool SkPaintToGrPaintWithXfermode(GrContext* context, |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 116 | const GrColorSpaceInfo& dstColorSpaceInfo, |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 117 | const SkPaint& skPaint, |
| 118 | const SkMatrix& viewM, |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 119 | SkBlendMode primColorMode, |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 120 | GrPaint* grPaint); |
| 121 | |
bsalomon | aa48d36 | 2015-10-01 08:34:17 -0700 | [diff] [blame] | 122 | /** This is used when there is a primitive color, but the shader should be ignored. Currently, |
| 123 | the expectation is that the primitive color will be premultiplied, though it really should be |
| 124 | unpremultiplied so that interpolation is done in unpremul space. The paint's alpha will be |
| 125 | applied to the primitive color after interpolation. */ |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 126 | inline bool SkPaintToGrPaintWithPrimitiveColor(GrContext* context, |
| 127 | const GrColorSpaceInfo& dstColorSpaceInfo, |
brianosman | 8fe485b | 2016-07-25 12:31:51 -0700 | [diff] [blame] | 128 | const SkPaint& skPaint, GrPaint* grPaint) { |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 129 | return SkPaintToGrPaintWithXfermode(context, dstColorSpaceInfo, skPaint, SkMatrix::I(), |
| 130 | SkBlendMode::kDst, grPaint); |
bsalomon | aa48d36 | 2015-10-01 08:34:17 -0700 | [diff] [blame] | 131 | } |
| 132 | |
joshualitt | 33a5fce | 2015-11-18 13:28:51 -0800 | [diff] [blame] | 133 | /** This is used when there may or may not be a shader, and the caller wants to plugin a texture |
| 134 | lookup. If there is a shader, then its output will only be used if the texture is alpha8. */ |
| 135 | bool SkPaintToGrPaintWithTexture(GrContext* context, |
Brian Salomon | f3569f0 | 2017-10-24 12:52:33 -0400 | [diff] [blame] | 136 | const GrColorSpaceInfo& dstColorSpaceInfo, |
joshualitt | 33a5fce | 2015-11-18 13:28:51 -0800 | [diff] [blame] | 137 | const SkPaint& paint, |
| 138 | const SkMatrix& viewM, |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 139 | std::unique_ptr<GrFragmentProcessor> fp, |
joshualitt | 33a5fce | 2015-11-18 13:28:51 -0800 | [diff] [blame] | 140 | bool textureIsAlphaOnly, |
| 141 | GrPaint* grPaint); |
| 142 | |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 143 | //////////////////////////////////////////////////////////////////////////////// |
| 144 | // Misc Sk to Gr type conversions |
| 145 | |
| 146 | GrSurfaceDesc GrImageInfoToSurfaceDesc(const SkImageInfo&, const GrCaps&); |
Greg Daniel | 81e7bf8 | 2017-07-19 14:47:42 -0400 | [diff] [blame] | 147 | GrPixelConfig SkImageInfo2GrPixelConfig(const SkColorType, SkColorSpace*, const GrCaps& caps); |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 148 | GrPixelConfig SkImageInfo2GrPixelConfig(const SkImageInfo& info, const GrCaps& caps); |
| 149 | |
| 150 | bool GrPixelConfigToColorType(GrPixelConfig, SkColorType*); |
| 151 | |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 152 | GrSamplerState::Filter GrSkFilterQualityToGrFilterMode(SkFilterQuality paintFilterQuality, |
| 153 | const SkMatrix& viewM, |
| 154 | const SkMatrix& localM, |
Brian Osman | db78cba | 2018-02-15 10:09:48 -0500 | [diff] [blame] | 155 | bool sharpenMipmappedTextures, |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 156 | bool* doBicubic); |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 157 | |
bsalomon | f276ac5 | 2015-10-09 13:36:42 -0700 | [diff] [blame] | 158 | ////////////////////////////////////////////////////////////////////////////// |
| 159 | |
Mike Reed | 887cdf1 | 2017-04-03 11:11:09 -0400 | [diff] [blame] | 160 | static inline GrPrimitiveType SkVertexModeToGrPrimitiveType(SkVertices::VertexMode mode) { |
Brian Salomon | 199fb87 | 2017-02-06 09:41:10 -0500 | [diff] [blame] | 161 | switch (mode) { |
Mike Reed | 887cdf1 | 2017-04-03 11:11:09 -0400 | [diff] [blame] | 162 | case SkVertices::kTriangles_VertexMode: |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 163 | return GrPrimitiveType::kTriangles; |
Mike Reed | 887cdf1 | 2017-04-03 11:11:09 -0400 | [diff] [blame] | 164 | case SkVertices::kTriangleStrip_VertexMode: |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 165 | return GrPrimitiveType::kTriangleStrip; |
Mike Reed | 887cdf1 | 2017-04-03 11:11:09 -0400 | [diff] [blame] | 166 | case SkVertices::kTriangleFan_VertexMode: |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 167 | return GrPrimitiveType::kTriangleFan; |
Brian Salomon | 199fb87 | 2017-02-06 09:41:10 -0500 | [diff] [blame] | 168 | } |
Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 169 | SK_ABORT("Invalid mode"); |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 170 | return GrPrimitiveType::kPoints; |
Brian Salomon | 199fb87 | 2017-02-06 09:41:10 -0500 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | ////////////////////////////////////////////////////////////////////////////// |
| 174 | |
Mike Reed | 6b3542a | 2017-06-06 10:41:18 -0400 | [diff] [blame] | 175 | GR_STATIC_ASSERT((int)kZero_GrBlendCoeff == (int)SkBlendModeCoeff::kZero); |
| 176 | GR_STATIC_ASSERT((int)kOne_GrBlendCoeff == (int)SkBlendModeCoeff::kOne); |
| 177 | GR_STATIC_ASSERT((int)kSC_GrBlendCoeff == (int)SkBlendModeCoeff::kSC); |
| 178 | GR_STATIC_ASSERT((int)kISC_GrBlendCoeff == (int)SkBlendModeCoeff::kISC); |
| 179 | GR_STATIC_ASSERT((int)kDC_GrBlendCoeff == (int)SkBlendModeCoeff::kDC); |
| 180 | GR_STATIC_ASSERT((int)kIDC_GrBlendCoeff == (int)SkBlendModeCoeff::kIDC); |
| 181 | GR_STATIC_ASSERT((int)kSA_GrBlendCoeff == (int)SkBlendModeCoeff::kSA); |
| 182 | GR_STATIC_ASSERT((int)kISA_GrBlendCoeff == (int)SkBlendModeCoeff::kISA); |
| 183 | GR_STATIC_ASSERT((int)kDA_GrBlendCoeff == (int)SkBlendModeCoeff::kDA); |
| 184 | GR_STATIC_ASSERT((int)kIDA_GrBlendCoeff == (int)SkBlendModeCoeff::kIDA); |
| 185 | //GR_STATIC_ASSERT(SkXfermode::kCoeffCount == 10); |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 186 | |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 187 | #define SkXfermodeCoeffToGrBlendCoeff(X) ((GrBlendCoeff)(X)) |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 188 | |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 189 | //////////////////////////////////////////////////////////////////////////////// |
| 190 | // Texture management |
Brian Salomon | 587e08f | 2017-01-27 10:59:27 -0500 | [diff] [blame] | 191 | |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 192 | /** Returns a texture representing the bitmap that is compatible with the GrSamplerState. The |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 193 | * texture is inserted into the cache (unless the bitmap is marked volatile) and can be |
| 194 | * retrieved again via this function. |
| 195 | * The 'scaleAdjust' in/out parameter will be updated to hold any rescaling that needs to be |
| 196 | * performed on the absolute texture coordinates (e.g., if the texture is resized out to |
| 197 | * the next power of two). It can be null if the caller is sure the bitmap won't be resized. |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 198 | */ |
Robert Phillips | bbd7a3b | 2017-03-21 08:48:40 -0400 | [diff] [blame] | 199 | sk_sp<GrTextureProxy> GrRefCachedBitmapTextureProxy(GrContext*, |
| 200 | const SkBitmap&, |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 201 | const GrSamplerState&, |
Robert Phillips | bbd7a3b | 2017-03-21 08:48:40 -0400 | [diff] [blame] | 202 | SkScalar scaleAdjust[2]); |
| 203 | |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 204 | /** |
| 205 | * Creates a new texture for the bitmap. Does not concern itself with cache keys or texture params. |
| 206 | * The bitmap must have CPU-accessible pixels. Attempts to take advantage of faster paths for |
Robert Phillips | 92de631 | 2017-05-23 07:43:48 -0400 | [diff] [blame] | 207 | * yuv planes. |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 208 | */ |
Robert Phillips | 1afd4cd | 2018-01-08 13:40:32 -0500 | [diff] [blame] | 209 | sk_sp<GrTextureProxy> GrUploadBitmapToTextureProxy(GrProxyProvider*, const SkBitmap&, |
Matt Sarett | dedac85 | 2017-05-12 10:56:49 -0400 | [diff] [blame] | 210 | SkColorSpace* dstColorSpace); |
Robert Phillips | d374948 | 2017-03-14 09:17:43 -0400 | [diff] [blame] | 211 | |
bsalomon | 0d99686 | 2016-03-09 18:44:43 -0800 | [diff] [blame] | 212 | /** |
Greg Daniel | 55afd6d | 2017-09-29 09:32:44 -0400 | [diff] [blame] | 213 | * Creates a new texture with mipmap levels and copies the baseProxy into the base layer. |
| 214 | */ |
| 215 | sk_sp<GrTextureProxy> GrCopyBaseMipMapToTextureProxy(GrContext*, |
Greg Daniel | e1da1d9 | 2017-10-06 15:59:27 -0400 | [diff] [blame] | 216 | GrTextureProxy* baseProxy); |
Greg Daniel | 55afd6d | 2017-09-29 09:32:44 -0400 | [diff] [blame] | 217 | |
Greg Daniel | 7e1912a | 2018-02-08 09:15:33 -0500 | [diff] [blame] | 218 | /* |
| 219 | * Create a texture proxy from the provided bitmap by wrapping it in an image and calling |
| 220 | * GrMakeCachedImageProxy. |
| 221 | */ |
| 222 | sk_sp<GrTextureProxy> GrMakeCachedBitmapProxy(GrProxyProvider*, const SkBitmap& bitmap, |
| 223 | SkBackingFit fit = SkBackingFit::kExact); |
Robert Phillips | e14d305 | 2017-02-15 13:18:21 -0500 | [diff] [blame] | 224 | |
Robert Phillips | 7a92639 | 2018-02-01 15:49:54 -0500 | [diff] [blame] | 225 | /* |
| 226 | * Create a texture proxy from the provided 'srcImage' and add it to the texture cache |
| 227 | * using the key also extracted from 'srcImage'. |
| 228 | */ |
Greg Daniel | 490695b | 2018-02-05 09:34:02 -0500 | [diff] [blame] | 229 | sk_sp<GrTextureProxy> GrMakeCachedImageProxy(GrProxyProvider*, sk_sp<SkImage> srcImage, |
| 230 | SkBackingFit fit = SkBackingFit::kExact); |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 231 | |
| 232 | /** |
| 233 | * Our key includes the offset, width, and height so that bitmaps created by extractSubset() |
| 234 | * are unique. |
| 235 | * |
| 236 | * The imageID is in the shared namespace (see SkNextID::ImageID()) |
| 237 | * - SkBitmap/SkPixelRef |
| 238 | * - SkImage |
| 239 | * - SkImageGenerator |
| 240 | * |
| 241 | * Note: width/height must fit in 16bits for this impl. |
| 242 | */ |
| 243 | void GrMakeKeyFromImageID(GrUniqueKey* key, uint32_t imageID, const SkIRect& imageBounds); |
| 244 | |
| 245 | /** Call this after installing a GrUniqueKey on texture. It will cause the texture's key to be |
| 246 | removed should the bitmap's contents change or be destroyed. */ |
| 247 | void GrInstallBitmapUniqueKeyInvalidator(const GrUniqueKey& key, SkPixelRef* pixelRef); |
| 248 | |
bsalomon | f276ac5 | 2015-10-09 13:36:42 -0700 | [diff] [blame] | 249 | ////////////////////////////////////////////////////////////////////////////// |
| 250 | |
Brian Osman | 3b65598 | 2017-03-07 16:58:08 -0500 | [diff] [blame] | 251 | /** When image filter code needs to construct a render target context to do intermediate rendering, |
| 252 | we need a renderable pixel config. The source (SkSpecialImage) may not be in a renderable |
| 253 | format, but we want to preserve the color space of that source. This picks an appropriate format |
| 254 | to use. */ |
| 255 | GrPixelConfig GrRenderableConfigForColorSpace(const SkColorSpace*); |
bsalomon | f276ac5 | 2015-10-09 13:36:42 -0700 | [diff] [blame] | 256 | |
reed | 8f34372 | 2015-08-13 13:32:39 -0700 | [diff] [blame] | 257 | #endif |