blob: 528d133e2de6590505399f511247d795517c0b8e [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * 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.comac10a2d2010-12-22 21:39:39 +00006 */
7
reed@google.comac10a2d2010-12-22 21:39:39 +00008#include "SkGr.h"
Brian Osman3b66ab62016-11-28 09:26:31 -05009#include "GrBitmapTextureMaker.h"
bsalomon76228632015-05-29 08:02:10 -070010#include "GrCaps.h"
Brian Osman1cb41712017-10-19 12:54:52 -040011#include "GrColorSpaceXform.h"
bsalomonf276ac52015-10-09 13:36:42 -070012#include "GrContext.h"
Greg Daniel55afd6d2017-09-29 09:32:44 -040013#include "GrContextPriv.h"
bsalomon045802d2015-10-20 07:58:01 -070014#include "GrGpuResourcePriv.h"
Brian Salomonf3569f02017-10-24 12:52:33 -040015#include "GrPaint.h"
Robert Phillips1afd4cd2018-01-08 13:40:32 -050016#include "GrProxyProvider.h"
Hal Canary6f6961e2017-01-31 13:50:44 -050017#include "GrTextureProxy.h"
cblume55f2d2d2016-02-26 13:20:48 -080018#include "GrTypes.h"
egdaniel378092f2014-12-03 10:40:13 -080019#include "GrXferProcessor.h"
Hal Canary95e3c052017-01-11 12:44:43 -050020#include "SkAutoMalloc.h"
reed374772b2016-10-05 17:33:02 -070021#include "SkBlendModePriv.h"
Hal Canary95e3c052017-01-11 12:44:43 -050022#include "SkCanvas.h"
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +000023#include "SkColorFilter.h"
krajcevski9c0e6292014-06-02 07:38:14 -070024#include "SkData.h"
Robert Phillips7a926392018-02-01 15:49:54 -050025#include "SkImage_Base.h"
Brian Osman4075ec82017-01-17 16:41:03 +000026#include "SkImageInfoPriv.h"
Greg Daniel7e1912a2018-02-08 09:15:33 -050027#include "SkImagePriv.h"
Mike Reed80747ef2018-01-23 15:29:32 -050028#include "SkMaskFilterBase.h"
commit-bot@chromium.org50a30432013-10-24 17:44:27 +000029#include "SkMessageBus.h"
cblume55f2d2d2016-02-26 13:20:48 -080030#include "SkMipMap.h"
Kevin Lubickc456b732017-01-11 17:21:57 +000031#include "SkPM4fPriv.h"
Florin Malitad4a70ee2017-06-19 10:21:43 -040032#include "SkPaintPriv.h"
Hal Canary95e3c052017-01-11 12:44:43 -050033#include "SkPixelRef.h"
sugoi692135f2015-01-19 10:10:27 -080034#include "SkResourceCache.h"
Florin Malita4aed1382017-05-25 10:38:07 -040035#include "SkShaderBase.h"
cblume55f2d2d2016-02-26 13:20:48 -080036#include "SkTemplates.h"
Derek Sollenberger559f5342017-08-17 12:34:54 -040037#include "SkTraceEvent.h"
joshualitt9bc39542015-08-12 12:57:54 -070038#include "effects/GrBicubicEffect.h"
bsalomonf1b7a1d2015-09-28 06:26:28 -070039#include "effects/GrConstColorProcessor.h"
krajcevskif461a8f2014-06-19 14:14:06 -070040#include "effects/GrDitherEffect.h"
egdaniel378092f2014-12-03 10:40:13 -080041#include "effects/GrPorterDuffXferProcessor.h"
bsalomonf1b7a1d2015-09-28 06:26:28 -070042#include "effects/GrXfermodeFragmentProcessor.h"
krajcevski9c0e6292014-06-02 07:38:14 -070043
brianosmana6359362016-03-21 06:55:37 -070044GrSurfaceDesc GrImageInfoToSurfaceDesc(const SkImageInfo& info, const GrCaps& caps) {
bsalomon466c2c42015-10-16 12:01:18 -070045 GrSurfaceDesc desc;
46 desc.fFlags = kNone_GrSurfaceFlags;
47 desc.fWidth = info.width();
48 desc.fHeight = info.height();
brianosmana6359362016-03-21 06:55:37 -070049 desc.fConfig = SkImageInfo2GrPixelConfig(info, caps);
Brian Salomonbdecacf2018-02-02 20:32:49 -050050 desc.fSampleCnt = 1;
bsalomon466c2c42015-10-16 12:01:18 -070051 return desc;
52}
53
bsalomon045802d2015-10-20 07:58:01 -070054void GrMakeKeyFromImageID(GrUniqueKey* key, uint32_t imageID, const SkIRect& imageBounds) {
55 SkASSERT(key);
56 SkASSERT(imageID);
57 SkASSERT(!imageBounds.isEmpty());
58 static const GrUniqueKey::Domain kImageIDDomain = GrUniqueKey::GenerateDomain();
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -040059 GrUniqueKey::Builder builder(key, kImageIDDomain, 5, "Image");
bsalomon466c2c42015-10-16 12:01:18 -070060 builder[0] = imageID;
bsalomon045802d2015-10-20 07:58:01 -070061 builder[1] = imageBounds.fLeft;
62 builder[2] = imageBounds.fTop;
63 builder[3] = imageBounds.fRight;
64 builder[4] = imageBounds.fBottom;
bsalomon466c2c42015-10-16 12:01:18 -070065}
66
bsalomon045802d2015-10-20 07:58:01 -070067//////////////////////////////////////////////////////////////////////////////
Robert Phillips1afd4cd2018-01-08 13:40:32 -050068sk_sp<GrTextureProxy> GrUploadBitmapToTextureProxy(GrProxyProvider* proxyProvider,
Matt Sarettdedac852017-05-12 10:56:49 -040069 const SkBitmap& bitmap,
70 SkColorSpace* dstColorSpace) {
Greg Daniel7619b642018-02-08 15:32:02 -050071 if (!bitmap.peekPixels(nullptr)) {
Brian Osman4075ec82017-01-17 16:41:03 +000072 return nullptr;
73 }
Greg Daniel7619b642018-02-08 15:32:02 -050074
75 SkDestinationSurfaceColorMode colorMode = dstColorSpace
76 ? SkDestinationSurfaceColorMode::kGammaAndColorSpaceAware
77 : SkDestinationSurfaceColorMode::kLegacy;
78
79 if (!SkImageInfoIsValid(bitmap.info(), colorMode)) {
Robert Phillipsd3749482017-03-14 09:17:43 -040080 return nullptr;
81 }
Greg Daniel7619b642018-02-08 15:32:02 -050082
83 // In non-ddl we will always instantiate right away. Thus we never want to copy the SkBitmap
84 // even if it's mutable. In ddl, if the bitmap is mutable then we must make a copy since the
85 // upload of the data to the gpu can happen at anytime and the bitmap may change by then.
Robert Phillips5c4b33b2018-03-20 16:23:08 -040086 SkCopyPixelsMode cpyMode = proxyProvider->recordingDDL() ? kIfMutable_SkCopyPixelsMode
87 : kNever_SkCopyPixelsMode;
Greg Daniel7619b642018-02-08 15:32:02 -050088 sk_sp<SkImage> image = SkMakeImageFromRasterBitmap(bitmap, cpyMode);
89
Brian Salomon58389b92018-03-07 13:01:25 -050090 return proxyProvider->createTextureProxy(std::move(image), kNone_GrSurfaceFlags, 1,
91 SkBudgeted::kYes, SkBackingFit::kExact);
Robert Phillipsd3749482017-03-14 09:17:43 -040092}
Brian Osman4075ec82017-01-17 16:41:03 +000093
bsalomon045802d2015-10-20 07:58:01 -070094////////////////////////////////////////////////////////////////////////////////
95
bsalomonc55271f2015-11-09 11:55:57 -080096void GrInstallBitmapUniqueKeyInvalidator(const GrUniqueKey& key, SkPixelRef* pixelRef) {
bsalomon89fe56b2015-10-29 10:49:28 -070097 class Invalidator : public SkPixelRef::GenIDChangeListener {
98 public:
99 explicit Invalidator(const GrUniqueKey& key) : fMsg(key) {}
100 private:
101 GrUniqueKeyInvalidatedMessage fMsg;
102
103 void onChange() override { SkMessageBus<GrUniqueKeyInvalidatedMessage>::Post(fMsg); }
104 };
105
106 pixelRef->addGenIDChangeListener(new Invalidator(key));
107}
108
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500109sk_sp<GrTextureProxy> GrCopyBaseMipMapToTextureProxy(GrContext* ctx, GrTextureProxy* baseProxy) {
Greg Daniel55afd6d2017-09-29 09:32:44 -0400110 SkASSERT(baseProxy);
111
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400112 if (!ctx->contextPriv().caps()->isConfigCopyable(baseProxy->config())) {
Greg Danielbb76ace2017-09-29 15:58:22 -0400113 return nullptr;
114 }
115
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500116 GrProxyProvider* proxyProvider = ctx->contextPriv().proxyProvider();
Greg Daniel55afd6d2017-09-29 09:32:44 -0400117 GrSurfaceDesc desc;
118 desc.fFlags = kNone_GrSurfaceFlags;
Greg Daniel55afd6d2017-09-29 09:32:44 -0400119 desc.fWidth = baseProxy->width();
120 desc.fHeight = baseProxy->height();
121 desc.fConfig = baseProxy->config();
Brian Salomonbdecacf2018-02-02 20:32:49 -0500122 desc.fSampleCnt = 1;
Greg Daniel55afd6d2017-09-29 09:32:44 -0400123
Brian Salomon2a4f9832018-03-03 22:43:43 -0500124 sk_sp<GrTextureProxy> proxy =
125 proxyProvider->createMipMapProxy(desc, baseProxy->origin(), SkBudgeted::kYes);
Greg Daniel55afd6d2017-09-29 09:32:44 -0400126 if (!proxy) {
127 return nullptr;
128 }
129
130 // Copy the base layer to our proxy
Brian Salomon366093f2018-02-13 09:25:22 -0500131 sk_sp<SkColorSpace> colorSpace;
132 if (GrPixelConfigIsSRGB(proxy->config())) {
133 colorSpace = SkColorSpace::MakeSRGB();
134 }
135 sk_sp<GrSurfaceContext> sContext =
136 ctx->contextPriv().makeWrappedSurfaceContext(proxy, std::move(colorSpace));
Greg Daniel55afd6d2017-09-29 09:32:44 -0400137 SkASSERT(sContext);
138 SkAssertResult(sContext->copy(baseProxy));
139
140 return proxy;
141}
142
Robert Phillipsbbd7a3b2017-03-21 08:48:40 -0400143sk_sp<GrTextureProxy> GrRefCachedBitmapTextureProxy(GrContext* ctx,
144 const SkBitmap& bitmap,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400145 const GrSamplerState& params,
Robert Phillipsbbd7a3b2017-03-21 08:48:40 -0400146 SkScalar scaleAdjust[2]) {
147 // Caller doesn't care about the texture's color space (they can always get it from the bitmap)
Robert Phillips3798c862017-03-27 11:08:16 -0400148 return GrBitmapTextureMaker(ctx, bitmap).refTextureProxyForParams(params, nullptr,
149 nullptr, scaleAdjust);
Robert Phillipsbbd7a3b2017-03-21 08:48:40 -0400150}
151
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500152sk_sp<GrTextureProxy> GrMakeCachedBitmapProxy(GrProxyProvider* proxyProvider,
Greg Daniel7e1912a2018-02-08 09:15:33 -0500153 const SkBitmap& bitmap,
154 SkBackingFit fit) {
155 if (!bitmap.peekPixels(nullptr)) {
156 return nullptr;
Robert Phillipse14d3052017-02-15 13:18:21 -0500157 }
158
Greg Daniel7e1912a2018-02-08 09:15:33 -0500159 // In non-ddl we will always instantiate right away. Thus we never want to copy the SkBitmap
160 // even if its mutable. In ddl, if the bitmap is mutable then we must make a copy since the
161 // upload of the data to the gpu can happen at anytime and the bitmap may change by then.
Robert Phillips5c4b33b2018-03-20 16:23:08 -0400162 SkCopyPixelsMode cpyMode = proxyProvider->recordingDDL() ? kIfMutable_SkCopyPixelsMode
163 : kNever_SkCopyPixelsMode;
Greg Daniel7e1912a2018-02-08 09:15:33 -0500164 sk_sp<SkImage> image = SkMakeImageFromRasterBitmap(bitmap, cpyMode);
Robert Phillipse14d3052017-02-15 13:18:21 -0500165
Greg Daniel7e1912a2018-02-08 09:15:33 -0500166 if (!image) {
167 return nullptr;
Robert Phillipse14d3052017-02-15 13:18:21 -0500168 }
169
Greg Daniel7e1912a2018-02-08 09:15:33 -0500170 return GrMakeCachedImageProxy(proxyProvider, std::move(image), fit);
Robert Phillipse14d3052017-02-15 13:18:21 -0500171}
172
Robert Phillips7a926392018-02-01 15:49:54 -0500173static void create_unique_key_for_image(const SkImage* image, GrUniqueKey* result) {
174 if (!image) {
175 result->reset(); // will be invalid
176 return;
177 }
178
179 if (const SkBitmap* bm = as_IB(image)->onPeekBitmap()) {
Greg Daniela4211122018-03-14 19:09:36 +0000180 if (!bm->isVolatile()) {
181 SkIPoint origin = bm->pixelRefOrigin();
182 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, bm->width(), bm->height());
183 GrMakeKeyFromImageID(result, bm->getGenerationID(), subset);
184 }
Robert Phillips7a926392018-02-01 15:49:54 -0500185 return;
186 }
187
188 GrMakeKeyFromImageID(result, image->uniqueID(), image->bounds());
189}
190
191sk_sp<GrTextureProxy> GrMakeCachedImageProxy(GrProxyProvider* proxyProvider,
Greg Daniel490695b2018-02-05 09:34:02 -0500192 sk_sp<SkImage> srcImage,
193 SkBackingFit fit) {
Robert Phillips7a926392018-02-01 15:49:54 -0500194 sk_sp<GrTextureProxy> proxy;
195 GrUniqueKey originalKey;
196
197 create_unique_key_for_image(srcImage.get(), &originalKey);
198
199 if (originalKey.isValid()) {
200 proxy = proxyProvider->findOrCreateProxyByUniqueKey(originalKey, kTopLeft_GrSurfaceOrigin);
201 }
202 if (!proxy) {
Greg Daniela4211122018-03-14 19:09:36 +0000203 proxy = proxyProvider->createTextureProxy(srcImage, kNone_GrSurfaceFlags, 1,
Brian Salomon58389b92018-03-07 13:01:25 -0500204 SkBudgeted::kYes, fit);
Robert Phillips7a926392018-02-01 15:49:54 -0500205 if (proxy && originalKey.isValid()) {
206 proxyProvider->assignUniqueKeyToProxy(originalKey, proxy.get());
Robert Phillips5c4b33b2018-03-20 16:23:08 -0400207 const SkBitmap* bm = as_IB(srcImage.get())->onPeekBitmap();
208 // When recording DDLs we do not want to install change listeners because doing
209 // so isn't threadsafe.
210 if (bm && !proxyProvider->recordingDDL()) {
Greg Daniela4211122018-03-14 19:09:36 +0000211 GrInstallBitmapUniqueKeyInvalidator(originalKey, bm->pixelRef());
212 }
Robert Phillips7a926392018-02-01 15:49:54 -0500213 }
214 }
215
216 return proxy;
217}
218
rileya@google.com24f3ad12012-07-18 21:47:40 +0000219///////////////////////////////////////////////////////////////////////////////
220
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400221GrColor4f SkColorToPremulGrColor4f(SkColor c, const GrColorSpaceInfo& colorSpaceInfo) {
Brian Osman72ae4312016-10-20 16:53:45 -0400222 // We want to premultiply after linearizing, so this is easy:
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400223 return SkColorToUnpremulGrColor4f(c, colorSpaceInfo).premul();
Brian Osman72ae4312016-10-20 16:53:45 -0400224}
225
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400226GrColor4f SkColorToPremulGrColor4fLegacy(SkColor c) {
227 return GrColor4f::FromGrColor(SkColorToUnpremulGrColor(c)).premul();
Brian Osman72ae4312016-10-20 16:53:45 -0400228}
229
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400230GrColor4f SkColorToUnpremulGrColor4f(SkColor c, const GrColorSpaceInfo& colorSpaceInfo) {
Brian Osmanc68d4aa2016-09-30 11:41:59 -0400231 GrColor4f color;
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400232 if (colorSpaceInfo.colorSpace()) {
Brian Osmanc68d4aa2016-09-30 11:41:59 -0400233 // SkColor4f::FromColor does sRGB -> Linear
234 color = GrColor4f::FromSkColor4f(SkColor4f::FromColor(c));
235 } else {
236 // GrColor4f::FromGrColor just multiplies by 1/255
237 color = GrColor4f::FromGrColor(SkColorToUnpremulGrColor(c));
238 }
239
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400240 if (auto* xform = colorSpaceInfo.colorSpaceXformFromSRGB()) {
241 color = xform->clampedXform(color);
Brian Osmanc68d4aa2016-09-30 11:41:59 -0400242 }
243
244 return color;
245}
246
247///////////////////////////////////////////////////////////////////////////////
248
Greg Daniel81e7bf82017-07-19 14:47:42 -0400249GrPixelConfig SkImageInfo2GrPixelConfig(const SkColorType type, SkColorSpace* cs,
250 const GrCaps& caps) {
Greg Daniel81e7bf82017-07-19 14:47:42 -0400251 switch (type) {
brianosmanc571c002016-03-17 13:01:26 -0700252 case kUnknown_SkColorType:
253 return kUnknown_GrPixelConfig;
254 case kAlpha_8_SkColorType:
255 return kAlpha_8_GrPixelConfig;
256 case kRGB_565_SkColorType:
257 return kRGB_565_GrPixelConfig;
258 case kARGB_4444_SkColorType:
259 return kRGBA_4444_GrPixelConfig;
260 case kRGBA_8888_SkColorType:
Matt Sarettf3880932017-03-24 10:06:03 -0400261 return (caps.srgbSupport() && cs && cs->gammaCloseToSRGB())
brianosmana6359362016-03-21 06:55:37 -0700262 ? kSRGBA_8888_GrPixelConfig : kRGBA_8888_GrPixelConfig;
Brian Osman9d440812018-01-04 09:35:04 -0500263 // TODO: We're checking for srgbSupport, but we can then end up picking sBGRA as our pixel
264 // config (which may not be supported). We need a better test here.
Brian Salomone41e1762018-01-25 14:07:47 -0500265 case kRGB_888x_SkColorType:
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400266 return kRGB_888_GrPixelConfig;
brianosmanc571c002016-03-17 13:01:26 -0700267 case kBGRA_8888_SkColorType:
Matt Sarettf3880932017-03-24 10:06:03 -0400268 return (caps.srgbSupport() && cs && cs->gammaCloseToSRGB())
brianosmana6359362016-03-21 06:55:37 -0700269 ? kSBGRA_8888_GrPixelConfig : kBGRA_8888_GrPixelConfig;
Brian Salomone41e1762018-01-25 14:07:47 -0500270 case kRGBA_1010102_SkColorType:
Brian Osman10fc6fd2018-03-02 11:01:10 -0500271 return kRGBA_1010102_GrPixelConfig;
Brian Salomone41e1762018-01-25 14:07:47 -0500272 case kRGB_101010x_SkColorType:
273 return kUnknown_GrPixelConfig;
brianosmanc571c002016-03-17 13:01:26 -0700274 case kGray_8_SkColorType:
Brian Osman986563b2017-01-10 14:20:02 -0500275 return kGray_8_GrPixelConfig;
brianosmanc571c002016-03-17 13:01:26 -0700276 case kRGBA_F16_SkColorType:
277 return kRGBA_half_GrPixelConfig;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000278 }
279 SkASSERT(0); // shouldn't get here
280 return kUnknown_GrPixelConfig;
281}
282
Greg Daniel81e7bf82017-07-19 14:47:42 -0400283GrPixelConfig SkImageInfo2GrPixelConfig(const SkImageInfo& info, const GrCaps& caps) {
284 return SkImageInfo2GrPixelConfig(info.colorType(), info.colorSpace(), caps);
285}
286
brianosman396fcdb2016-07-22 06:26:11 -0700287bool GrPixelConfigToColorType(GrPixelConfig config, SkColorType* ctOut) {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400288 SkColorType ct = GrColorTypeToSkColorType(GrPixelConfigToColorType(config));
289 if (kUnknown_SkColorType != ct) {
290 if (ctOut) {
291 *ctOut = ct;
292 }
293 return true;
reed@google.combf790232013-12-13 19:45:58 +0000294 }
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400295 return false;
reed@google.combf790232013-12-13 19:45:58 +0000296}
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000297
brianosman27a3aa52016-09-23 07:11:34 -0700298GrPixelConfig GrRenderableConfigForColorSpace(const SkColorSpace* colorSpace) {
Matt Sarettf3880932017-03-24 10:06:03 -0400299 if (!colorSpace) {
brianosman2695eaa2016-09-21 06:45:09 -0700300 return kRGBA_8888_GrPixelConfig;
301 } else if (colorSpace->gammaIsLinear()) {
Mike Kleince4cf722018-05-10 11:29:15 -0400302 // TODO
brianosman2695eaa2016-09-21 06:45:09 -0700303 return kRGBA_half_GrPixelConfig;
304 } else if (colorSpace->gammaCloseToSRGB()) {
305 return kSRGBA_8888_GrPixelConfig;
306 } else {
307 SkDEBUGFAIL("No renderable config exists for color space with strange gamma");
308 return kUnknown_GrPixelConfig;
309 }
310}
311
bsalomonf1b7a1d2015-09-28 06:26:28 -0700312////////////////////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000313
Mike Reed185ba212017-04-28 12:31:05 -0400314static inline bool blend_requires_shader(const SkBlendMode mode) {
315 return SkBlendMode::kDst != mode;
bsalomonaa48d362015-10-01 08:34:17 -0700316}
317
bsalomonf1b7a1d2015-09-28 06:26:28 -0700318static inline bool skpaint_to_grpaint_impl(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400319 const GrColorSpaceInfo& colorSpaceInfo,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700320 const SkPaint& skPaint,
321 const SkMatrix& viewM,
Brian Salomonaff329b2017-08-11 09:40:37 -0400322 std::unique_ptr<GrFragmentProcessor>* shaderProcessor,
Mike Reed7d954ad2016-10-28 15:42:34 -0400323 SkBlendMode* primColorMode,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700324 GrPaint* grPaint) {
Brian Salomonf3569f02017-10-24 12:52:33 -0400325 grPaint->setAllowSRGBInputs(colorSpaceInfo.isGammaCorrect());
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000326
Brian Osmanc68d4aa2016-09-30 11:41:59 -0400327 // Convert SkPaint color to 4f format, including optional linearizing and gamut conversion.
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400328 GrColor4f origColor = SkColorToUnpremulGrColor4f(skPaint.getColor(), colorSpaceInfo);
brianosmana4535a32016-06-24 12:50:19 -0700329
Mike Reed3bc266b2018-01-20 22:24:41 +0000330 const GrFPArgs fpArgs(context, &viewM, skPaint.getFilterQuality(), &colorSpaceInfo);
Mike Reedbfadcf02018-01-20 22:24:21 +0000331
bsalomonf1b7a1d2015-09-28 06:26:28 -0700332 // Setup the initial color considering the shader, the SkPaint color, and the presence or not
333 // of per-vertex colors.
Brian Salomonaff329b2017-08-11 09:40:37 -0400334 std::unique_ptr<GrFragmentProcessor> shaderFP;
Mike Reed185ba212017-04-28 12:31:05 -0400335 if (!primColorMode || blend_requires_shader(*primColorMode)) {
bsalomonaa48d362015-10-01 08:34:17 -0700336 if (shaderProcessor) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400337 shaderFP = std::move(*shaderProcessor);
Florin Malita4aed1382017-05-25 10:38:07 -0400338 } else if (const auto* shader = as_SB(skPaint.getShader())) {
Mike Reedbfadcf02018-01-20 22:24:21 +0000339 shaderFP = shader->asFragmentProcessor(fpArgs);
Yuqian Liaad2ec62018-02-26 10:34:52 -0500340 if (!shaderFP) {
341 return false;
342 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700343 }
344 }
345
346 // Set this in below cases if the output of the shader/paint-color/paint-alpha/primXfermode is
347 // a known constant value. In that case we can simply apply a color filter during this
348 // conversion without converting the color filter to a GrFragmentProcessor.
349 bool applyColorFilterToPaintColor = false;
350 if (shaderFP) {
351 if (primColorMode) {
352 // There is a blend between the primitive color and the shader color. The shader sees
353 // the opaque paint color. The shader's output is blended using the provided mode by
354 // the primitive color. The blended color is then modulated by the paint's alpha.
355
356 // The geometry processor will insert the primitive color to start the color chain, so
357 // the GrPaint color will be ignored.
358
brianosman4cea3b92016-09-08 09:33:50 -0700359 GrColor4f shaderInput = origColor.opaque();
Brian Salomonaff329b2017-08-11 09:40:37 -0400360 shaderFP = GrFragmentProcessor::OverrideInput(std::move(shaderFP), shaderInput);
Mike Reed185ba212017-04-28 12:31:05 -0400361 shaderFP = GrXfermodeFragmentProcessor::MakeFromSrcProcessor(std::move(shaderFP),
362 *primColorMode);
363
bsalomonf1b7a1d2015-09-28 06:26:28 -0700364 // The above may return null if compose results in a pass through of the prim color.
365 if (shaderFP) {
Robert Phillips1c9686b2017-06-30 08:40:28 -0400366 grPaint->addColorFragmentProcessor(std::move(shaderFP));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700367 }
368
brianosmana4535a32016-06-24 12:50:19 -0700369 // We can ignore origColor here - alpha is unchanged by gamma
bsalomonf1b7a1d2015-09-28 06:26:28 -0700370 GrColor paintAlpha = SkColorAlphaToGrColor(skPaint.getColor());
371 if (GrColor_WHITE != paintAlpha) {
Brian Osman618d3042016-10-25 10:51:28 -0400372 // No gamut conversion - paintAlpha is a (linear) alpha value, splatted to all
373 // color channels. It's value should be treated as the same in ANY color space.
bungeman06ca8ec2016-06-09 08:01:03 -0700374 grPaint->addColorFragmentProcessor(GrConstColorProcessor::Make(
Brian Osman618d3042016-10-25 10:51:28 -0400375 GrColor4f::FromGrColor(paintAlpha),
Ethan Nicholase9d172a2017-11-20 12:12:24 -0500376 GrConstColorProcessor::InputMode::kModulateRGBA));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700377 }
378 } else {
379 // The shader's FP sees the paint unpremul color
brianosmana4535a32016-06-24 12:50:19 -0700380 grPaint->setColor4f(origColor);
bungeman06ca8ec2016-06-09 08:01:03 -0700381 grPaint->addColorFragmentProcessor(std::move(shaderFP));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700382 }
383 } else {
384 if (primColorMode) {
385 // There is a blend between the primitive color and the paint color. The blend considers
386 // the opaque paint color. The paint's alpha is applied to the post-blended color.
Brian Salomonaff329b2017-08-11 09:40:37 -0400387 auto processor = GrConstColorProcessor::Make(origColor.opaque(),
Ethan Nicholase9d172a2017-11-20 12:12:24 -0500388 GrConstColorProcessor::InputMode::kIgnore);
Mike Reed185ba212017-04-28 12:31:05 -0400389 processor = GrXfermodeFragmentProcessor::MakeFromSrcProcessor(std::move(processor),
390 *primColorMode);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700391 if (processor) {
bungeman06ca8ec2016-06-09 08:01:03 -0700392 grPaint->addColorFragmentProcessor(std::move(processor));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700393 }
394
brianosmana4535a32016-06-24 12:50:19 -0700395 grPaint->setColor4f(origColor.opaque());
bsalomonf1b7a1d2015-09-28 06:26:28 -0700396
brianosmana4535a32016-06-24 12:50:19 -0700397 // We can ignore origColor here - alpha is unchanged by gamma
bsalomonf1b7a1d2015-09-28 06:26:28 -0700398 GrColor paintAlpha = SkColorAlphaToGrColor(skPaint.getColor());
bsalomonaa48d362015-10-01 08:34:17 -0700399 if (GrColor_WHITE != paintAlpha) {
Brian Osman618d3042016-10-25 10:51:28 -0400400 // No gamut conversion - paintAlpha is a (linear) alpha value, splatted to all
401 // color channels. It's value should be treated as the same in ANY color space.
bungeman06ca8ec2016-06-09 08:01:03 -0700402 grPaint->addColorFragmentProcessor(GrConstColorProcessor::Make(
Brian Osman618d3042016-10-25 10:51:28 -0400403 GrColor4f::FromGrColor(paintAlpha),
Ethan Nicholase9d172a2017-11-20 12:12:24 -0500404 GrConstColorProcessor::InputMode::kModulateRGBA));
bsalomonaa48d362015-10-01 08:34:17 -0700405 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700406 } else {
407 // No shader, no primitive color.
brianosmana4535a32016-06-24 12:50:19 -0700408 grPaint->setColor4f(origColor.premul());
bsalomonf1b7a1d2015-09-28 06:26:28 -0700409 applyColorFilterToPaintColor = true;
410 }
411 }
412
413 SkColorFilter* colorFilter = skPaint.getColorFilter();
414 if (colorFilter) {
415 if (applyColorFilterToPaintColor) {
Brian Osman8bf4e672016-10-17 16:54:49 -0400416 // If we're in legacy mode, we *must* avoid using the 4f version of the color filter,
417 // because that will combine with the linearized version of the stored color.
Brian Salomonf3569f02017-10-24 12:52:33 -0400418 if (colorSpaceInfo.isGammaCorrect()) {
Brian Osman8bf4e672016-10-17 16:54:49 -0400419 grPaint->setColor4f(GrColor4f::FromSkColor4f(
420 colorFilter->filterColor4f(origColor.toSkColor4f())).premul());
421 } else {
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400422 grPaint->setColor4f(SkColorToPremulGrColor4fLegacy(
423 colorFilter->filterColor(skPaint.getColor())));
Brian Osman8bf4e672016-10-17 16:54:49 -0400424 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700425 } else {
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400426 auto cfFP = colorFilter->asFragmentProcessor(context, colorSpaceInfo);
bsalomone25eea42015-09-29 06:38:55 -0700427 if (cfFP) {
bungeman06ca8ec2016-06-09 08:01:03 -0700428 grPaint->addColorFragmentProcessor(std::move(cfFP));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700429 } else {
430 return false;
431 }
432 }
433 }
434
Mike Reed80747ef2018-01-23 15:29:32 -0500435 SkMaskFilterBase* maskFilter = as_MFB(skPaint.getMaskFilter());
Robert Phillipsa29a9562016-10-20 09:40:55 -0400436 if (maskFilter) {
Mike Reedbfadcf02018-01-20 22:24:21 +0000437 if (auto mfFP = maskFilter->asFragmentProcessor(fpArgs)) {
438 grPaint->addCoverageFragmentProcessor(std::move(mfFP));
Robert Phillipsa29a9562016-10-20 09:40:55 -0400439 }
440 }
441
robertphillips4f037942016-02-09 05:09:27 -0800442 // When the xfermode is null on the SkPaint (meaning kSrcOver) we need the XPFactory field on
443 // the GrPaint to also be null (also kSrcOver).
444 SkASSERT(!grPaint->getXPFactory());
reed374772b2016-10-05 17:33:02 -0700445 if (!skPaint.isSrcOver()) {
446 grPaint->setXPFactory(SkBlendMode_AsXPFactory(skPaint.getBlendMode()));
robertphillips4f037942016-02-09 05:09:27 -0800447 }
mtklein775b8192014-12-02 09:11:25 -0800448
krajcevskif461a8f2014-06-19 14:14:06 -0700449#ifndef SK_IGNORE_GPU_DITHER
Florin Malitad4a70ee2017-06-19 10:21:43 -0400450 // Conservative default, in case GrPixelConfigToColorType() fails.
451 SkColorType ct = SkColorType::kRGB_565_SkColorType;
Brian Salomonf3569f02017-10-24 12:52:33 -0400452 GrPixelConfigToColorType(colorSpaceInfo.config(), &ct);
453 if (SkPaintPriv::ShouldDither(skPaint, ct) && grPaint->numColorFragmentProcessors() > 0 &&
454 !colorSpaceInfo.isGammaCorrect()) {
455 auto ditherFP = GrDitherEffect::Make(colorSpaceInfo.config());
Brian Salomon0c15ae82017-07-19 15:39:56 +0000456 if (ditherFP) {
457 grPaint->addColorFragmentProcessor(std::move(ditherFP));
458 }
krajcevskif461a8f2014-06-19 14:14:06 -0700459 }
460#endif
bsalomonbed83a62015-04-15 14:18:34 -0700461 return true;
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000462}
463
Brian Salomonf3569f02017-10-24 12:52:33 -0400464bool SkPaintToGrPaint(GrContext* context, const GrColorSpaceInfo& colorSpaceInfo,
465 const SkPaint& skPaint, const SkMatrix& viewM, GrPaint* grPaint) {
466 return skpaint_to_grpaint_impl(context, colorSpaceInfo, skPaint, viewM, nullptr, nullptr,
467 grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700468}
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000469
bsalomonf1b7a1d2015-09-28 06:26:28 -0700470/** Replaces the SkShader (if any) on skPaint with the passed in GrFragmentProcessor. */
471bool SkPaintToGrPaintReplaceShader(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400472 const GrColorSpaceInfo& colorSpaceInfo,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700473 const SkPaint& skPaint,
Brian Salomonaff329b2017-08-11 09:40:37 -0400474 std::unique_ptr<GrFragmentProcessor> shaderFP,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700475 GrPaint* grPaint) {
476 if (!shaderFP) {
bsalomonc21b09e2015-08-28 18:46:56 -0700477 return false;
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000478 }
Brian Salomonf3569f02017-10-24 12:52:33 -0400479 return skpaint_to_grpaint_impl(context, colorSpaceInfo, skPaint, SkMatrix::I(), &shaderFP,
480 nullptr, grPaint);
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000481}
reed8b26b992015-05-07 15:36:17 -0700482
bsalomonf1b7a1d2015-09-28 06:26:28 -0700483/** Ignores the SkShader (if any) on skPaint. */
484bool SkPaintToGrPaintNoShader(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400485 const GrColorSpaceInfo& colorSpaceInfo,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700486 const SkPaint& skPaint,
487 GrPaint* grPaint) {
488 // Use a ptr to a nullptr to to indicate that the SkShader is ignored and not replaced.
Robert Phillipsd3b37a12018-03-27 09:53:35 -0400489 std::unique_ptr<GrFragmentProcessor> nullShaderFP(nullptr);
490 return skpaint_to_grpaint_impl(context, colorSpaceInfo, skPaint, SkMatrix::I(), &nullShaderFP,
Brian Salomonf3569f02017-10-24 12:52:33 -0400491 nullptr, grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700492}
493
494/** Blends the SkPaint's shader (or color if no shader) with a per-primitive color which must
Mike Reed7d954ad2016-10-28 15:42:34 -0400495be setup as a vertex attribute using the specified SkBlendMode. */
bsalomonf1b7a1d2015-09-28 06:26:28 -0700496bool SkPaintToGrPaintWithXfermode(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400497 const GrColorSpaceInfo& colorSpaceInfo,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700498 const SkPaint& skPaint,
499 const SkMatrix& viewM,
Mike Reed7d954ad2016-10-28 15:42:34 -0400500 SkBlendMode primColorMode,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700501 GrPaint* grPaint) {
Brian Salomonf3569f02017-10-24 12:52:33 -0400502 return skpaint_to_grpaint_impl(context, colorSpaceInfo, skPaint, viewM, nullptr, &primColorMode,
Mike Reed185ba212017-04-28 12:31:05 -0400503 grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700504}
505
joshualitt33a5fce2015-11-18 13:28:51 -0800506bool SkPaintToGrPaintWithTexture(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400507 const GrColorSpaceInfo& colorSpaceInfo,
joshualitt33a5fce2015-11-18 13:28:51 -0800508 const SkPaint& paint,
509 const SkMatrix& viewM,
Brian Salomonaff329b2017-08-11 09:40:37 -0400510 std::unique_ptr<GrFragmentProcessor> fp,
joshualitt33a5fce2015-11-18 13:28:51 -0800511 bool textureIsAlphaOnly,
512 GrPaint* grPaint) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400513 std::unique_ptr<GrFragmentProcessor> shaderFP;
joshualitt33a5fce2015-11-18 13:28:51 -0800514 if (textureIsAlphaOnly) {
Florin Malita4aed1382017-05-25 10:38:07 -0400515 if (const auto* shader = as_SB(paint.getShader())) {
Mike Reede3429e62018-01-19 11:43:34 -0500516 shaderFP = shader->asFragmentProcessor(GrFPArgs(
Florin Malitac6c5ead2018-04-11 15:33:40 -0400517 context, &viewM, paint.getFilterQuality(), &colorSpaceInfo));
joshualitt33a5fce2015-11-18 13:28:51 -0800518 if (!shaderFP) {
519 return false;
520 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400521 std::unique_ptr<GrFragmentProcessor> fpSeries[] = { std::move(shaderFP), std::move(fp) };
bungeman06ca8ec2016-06-09 08:01:03 -0700522 shaderFP = GrFragmentProcessor::RunInSeries(fpSeries, 2);
joshualitt33a5fce2015-11-18 13:28:51 -0800523 } else {
Brian Salomonaff329b2017-08-11 09:40:37 -0400524 shaderFP = GrFragmentProcessor::MakeInputPremulAndMulByOutput(std::move(fp));
joshualitt33a5fce2015-11-18 13:28:51 -0800525 }
526 } else {
Mike Reed28eaed22018-02-01 11:24:53 -0500527 shaderFP = GrFragmentProcessor::MulChildByInputAlpha(std::move(fp));
joshualitt33a5fce2015-11-18 13:28:51 -0800528 }
529
Brian Salomonf3569f02017-10-24 12:52:33 -0400530 return SkPaintToGrPaintReplaceShader(context, colorSpaceInfo, paint, std::move(shaderFP),
531 grPaint);
joshualitt33a5fce2015-11-18 13:28:51 -0800532}
533
bsalomonf1b7a1d2015-09-28 06:26:28 -0700534
535////////////////////////////////////////////////////////////////////////////////////////////////
536
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400537GrSamplerState::Filter GrSkFilterQualityToGrFilterMode(SkFilterQuality paintFilterQuality,
538 const SkMatrix& viewM,
539 const SkMatrix& localM,
Brian Osmandb78cba2018-02-15 10:09:48 -0500540 bool sharpenMipmappedTextures,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400541 bool* doBicubic) {
joshualitt9bc39542015-08-12 12:57:54 -0700542 *doBicubic = false;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400543 GrSamplerState::Filter textureFilterMode;
joshualitt9bc39542015-08-12 12:57:54 -0700544 switch (paintFilterQuality) {
545 case kNone_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400546 textureFilterMode = GrSamplerState::Filter::kNearest;
joshualitt9bc39542015-08-12 12:57:54 -0700547 break;
548 case kLow_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400549 textureFilterMode = GrSamplerState::Filter::kBilerp;
joshualitt9bc39542015-08-12 12:57:54 -0700550 break;
551 case kMedium_SkFilterQuality: {
552 SkMatrix matrix;
553 matrix.setConcat(viewM, localM);
Brian Osmandb78cba2018-02-15 10:09:48 -0500554 // With sharp mips, we bias lookups by -0.5. That means our final LOD is >= 0 until the
555 // computed LOD is >= 0.5. At what scale factor does a texture get an LOD of 0.5?
556 //
557 // Want: 0 = log2(1/s) - 0.5
558 // 0.5 = log2(1/s)
559 // 2^0.5 = 1/s
560 // 1/2^0.5 = s
561 // 2^0.5/2 = s
562 SkScalar mipScale = sharpenMipmappedTextures ? SK_ScalarRoot2Over2 : SK_Scalar1;
563 if (matrix.getMinScale() < mipScale) {
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400564 textureFilterMode = GrSamplerState::Filter::kMipMap;
joshualitt9bc39542015-08-12 12:57:54 -0700565 } else {
566 // Don't trigger MIP level generation unnecessarily.
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400567 textureFilterMode = GrSamplerState::Filter::kBilerp;
joshualitt9bc39542015-08-12 12:57:54 -0700568 }
569 break;
570 }
571 case kHigh_SkFilterQuality: {
572 SkMatrix matrix;
573 matrix.setConcat(viewM, localM);
574 *doBicubic = GrBicubicEffect::ShouldUseBicubic(matrix, &textureFilterMode);
575 break;
576 }
577 default:
Mike Kleine54c75f2016-10-13 14:18:09 -0400578 // Should be unreachable. If not, fall back to mipmaps.
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400579 textureFilterMode = GrSamplerState::Filter::kMipMap;
joshualitt9bc39542015-08-12 12:57:54 -0700580 break;
581
582 }
583 return textureFilterMode;
584}