blob: c11d985ba5d0022dcad4dadabda6acd7668350eb [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"
egdaniel378092f2014-12-03 10:40:13 -080040#include "effects/GrPorterDuffXferProcessor.h"
bsalomonf1b7a1d2015-09-28 06:26:28 -070041#include "effects/GrXfermodeFragmentProcessor.h"
Ethan Nicholas00543112018-07-31 09:44:36 -040042#include "effects/GrSkSLFP.h"
43
44const char* SKSL_DITHER_SRC = R"(
45// This controls the range of values added to color channels
46layout(key) in int rangeType;
47
48void main(int x, int y, inout half4 color) {
49 half value;
50 half range;
51 @switch (rangeType) {
52 case 0:
53 range = 1.0 / 255.0;
54 break;
55 case 1:
56 range = 1.0 / 63.0;
57 break;
58 default:
59 // Experimentally this looks better than the expected value of 1/15.
60 range = 1.0 / 15.0;
61 break;
62 }
63 @if (sk_Caps.integerSupport) {
64 // This ordered-dither code is lifted from the cpu backend.
65 uint x = uint(x);
66 uint y = uint(y);
67 uint m = (y & 1) << 5 | (x & 1) << 4 |
68 (y & 2) << 2 | (x & 2) << 1 |
69 (y & 4) >> 1 | (x & 4) >> 2;
70 value = half(m) * 1.0 / 64.0 - 63.0 / 128.0;
71 } else {
72 // Simulate the integer effect used above using step/mod. For speed, simulates a 4x4
73 // dither pattern rather than an 8x8 one.
74 half4 modValues = mod(float4(x, y, x, y), half4(2.0, 2.0, 4.0, 4.0));
75 half4 stepValues = step(modValues, half4(1.0, 1.0, 2.0, 2.0));
76 value = dot(stepValues, half4(8.0 / 16.0, 4.0 / 16.0, 2.0 / 16.0, 1.0 / 16.0)) - 15.0 / 32.0;
77 }
78 // For each color channel, add the random offset to the channel value and then clamp
79 // between 0 and alpha to keep the color premultiplied.
80 color = half4(clamp(color.rgb + value * range, 0.0, color.a), color.a);
81}
82)";
krajcevski9c0e6292014-06-02 07:38:14 -070083
Brian Osman2b23c4b2018-06-01 12:25:08 -040084GrSurfaceDesc GrImageInfoToSurfaceDesc(const SkImageInfo& info) {
bsalomon466c2c42015-10-16 12:01:18 -070085 GrSurfaceDesc desc;
86 desc.fFlags = kNone_GrSurfaceFlags;
87 desc.fWidth = info.width();
88 desc.fHeight = info.height();
Brian Osman2b23c4b2018-06-01 12:25:08 -040089 desc.fConfig = SkImageInfo2GrPixelConfig(info);
Brian Salomonbdecacf2018-02-02 20:32:49 -050090 desc.fSampleCnt = 1;
bsalomon466c2c42015-10-16 12:01:18 -070091 return desc;
92}
93
bsalomon045802d2015-10-20 07:58:01 -070094void GrMakeKeyFromImageID(GrUniqueKey* key, uint32_t imageID, const SkIRect& imageBounds) {
95 SkASSERT(key);
96 SkASSERT(imageID);
97 SkASSERT(!imageBounds.isEmpty());
98 static const GrUniqueKey::Domain kImageIDDomain = GrUniqueKey::GenerateDomain();
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -040099 GrUniqueKey::Builder builder(key, kImageIDDomain, 5, "Image");
bsalomon466c2c42015-10-16 12:01:18 -0700100 builder[0] = imageID;
bsalomon045802d2015-10-20 07:58:01 -0700101 builder[1] = imageBounds.fLeft;
102 builder[2] = imageBounds.fTop;
103 builder[3] = imageBounds.fRight;
104 builder[4] = imageBounds.fBottom;
bsalomon466c2c42015-10-16 12:01:18 -0700105}
106
bsalomon045802d2015-10-20 07:58:01 -0700107//////////////////////////////////////////////////////////////////////////////
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500108sk_sp<GrTextureProxy> GrUploadBitmapToTextureProxy(GrProxyProvider* proxyProvider,
Brian Osman2b23c4b2018-06-01 12:25:08 -0400109 const SkBitmap& bitmap) {
Greg Daniel7619b642018-02-08 15:32:02 -0500110 if (!bitmap.peekPixels(nullptr)) {
Brian Osman4075ec82017-01-17 16:41:03 +0000111 return nullptr;
112 }
Greg Daniel7619b642018-02-08 15:32:02 -0500113
Brian Osman2b23c4b2018-06-01 12:25:08 -0400114 if (!SkImageInfoIsValid(bitmap.info())) {
Robert Phillipsd3749482017-03-14 09:17:43 -0400115 return nullptr;
116 }
Greg Daniel7619b642018-02-08 15:32:02 -0500117
118 // In non-ddl we will always instantiate right away. Thus we never want to copy the SkBitmap
119 // even if it's mutable. In ddl, if the bitmap is mutable then we must make a copy since the
120 // 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 -0400121 SkCopyPixelsMode cpyMode = proxyProvider->recordingDDL() ? kIfMutable_SkCopyPixelsMode
122 : kNever_SkCopyPixelsMode;
Greg Daniel7619b642018-02-08 15:32:02 -0500123 sk_sp<SkImage> image = SkMakeImageFromRasterBitmap(bitmap, cpyMode);
124
Brian Salomon58389b92018-03-07 13:01:25 -0500125 return proxyProvider->createTextureProxy(std::move(image), kNone_GrSurfaceFlags, 1,
126 SkBudgeted::kYes, SkBackingFit::kExact);
Robert Phillipsd3749482017-03-14 09:17:43 -0400127}
Brian Osman4075ec82017-01-17 16:41:03 +0000128
bsalomon045802d2015-10-20 07:58:01 -0700129////////////////////////////////////////////////////////////////////////////////
130
Brian Salomon238069b2018-07-11 15:58:57 -0400131void GrInstallBitmapUniqueKeyInvalidator(const GrUniqueKey& key, uint32_t contextUniqueID,
132 SkPixelRef* pixelRef) {
bsalomon89fe56b2015-10-29 10:49:28 -0700133 class Invalidator : public SkPixelRef::GenIDChangeListener {
134 public:
Brian Salomon238069b2018-07-11 15:58:57 -0400135 explicit Invalidator(const GrUniqueKey& key, uint32_t contextUniqueID)
136 : fMsg(key, contextUniqueID) {}
137
bsalomon89fe56b2015-10-29 10:49:28 -0700138 private:
139 GrUniqueKeyInvalidatedMessage fMsg;
140
141 void onChange() override { SkMessageBus<GrUniqueKeyInvalidatedMessage>::Post(fMsg); }
142 };
143
Brian Salomon238069b2018-07-11 15:58:57 -0400144 pixelRef->addGenIDChangeListener(new Invalidator(key, contextUniqueID));
bsalomon89fe56b2015-10-29 10:49:28 -0700145}
146
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500147sk_sp<GrTextureProxy> GrCopyBaseMipMapToTextureProxy(GrContext* ctx, GrTextureProxy* baseProxy) {
Greg Daniel55afd6d2017-09-29 09:32:44 -0400148 SkASSERT(baseProxy);
149
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400150 if (!ctx->contextPriv().caps()->isConfigCopyable(baseProxy->config())) {
Greg Danielbb76ace2017-09-29 15:58:22 -0400151 return nullptr;
152 }
153
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500154 GrProxyProvider* proxyProvider = ctx->contextPriv().proxyProvider();
Greg Daniel55afd6d2017-09-29 09:32:44 -0400155 GrSurfaceDesc desc;
156 desc.fFlags = kNone_GrSurfaceFlags;
Greg Daniel55afd6d2017-09-29 09:32:44 -0400157 desc.fWidth = baseProxy->width();
158 desc.fHeight = baseProxy->height();
159 desc.fConfig = baseProxy->config();
Brian Salomonbdecacf2018-02-02 20:32:49 -0500160 desc.fSampleCnt = 1;
Greg Daniel55afd6d2017-09-29 09:32:44 -0400161
Brian Salomon2a4f9832018-03-03 22:43:43 -0500162 sk_sp<GrTextureProxy> proxy =
163 proxyProvider->createMipMapProxy(desc, baseProxy->origin(), SkBudgeted::kYes);
Greg Daniel55afd6d2017-09-29 09:32:44 -0400164 if (!proxy) {
165 return nullptr;
166 }
167
168 // Copy the base layer to our proxy
Brian Salomon366093f2018-02-13 09:25:22 -0500169 sk_sp<GrSurfaceContext> sContext =
Brian Osman9363ac42018-06-01 16:10:53 -0400170 ctx->contextPriv().makeWrappedSurfaceContext(proxy);
Greg Daniel55afd6d2017-09-29 09:32:44 -0400171 SkASSERT(sContext);
172 SkAssertResult(sContext->copy(baseProxy));
173
174 return proxy;
175}
176
Robert Phillipsbbd7a3b2017-03-21 08:48:40 -0400177sk_sp<GrTextureProxy> GrRefCachedBitmapTextureProxy(GrContext* ctx,
178 const SkBitmap& bitmap,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400179 const GrSamplerState& params,
Robert Phillipsbbd7a3b2017-03-21 08:48:40 -0400180 SkScalar scaleAdjust[2]) {
181 // 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 -0400182 return GrBitmapTextureMaker(ctx, bitmap).refTextureProxyForParams(params, nullptr,
183 nullptr, scaleAdjust);
Robert Phillipsbbd7a3b2017-03-21 08:48:40 -0400184}
185
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500186sk_sp<GrTextureProxy> GrMakeCachedBitmapProxy(GrProxyProvider* proxyProvider,
Greg Daniel7e1912a2018-02-08 09:15:33 -0500187 const SkBitmap& bitmap,
188 SkBackingFit fit) {
189 if (!bitmap.peekPixels(nullptr)) {
190 return nullptr;
Robert Phillipse14d3052017-02-15 13:18:21 -0500191 }
192
Greg Daniel7e1912a2018-02-08 09:15:33 -0500193 // In non-ddl we will always instantiate right away. Thus we never want to copy the SkBitmap
194 // even if its mutable. In ddl, if the bitmap is mutable then we must make a copy since the
195 // 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 -0400196 SkCopyPixelsMode cpyMode = proxyProvider->recordingDDL() ? kIfMutable_SkCopyPixelsMode
197 : kNever_SkCopyPixelsMode;
Greg Daniel7e1912a2018-02-08 09:15:33 -0500198 sk_sp<SkImage> image = SkMakeImageFromRasterBitmap(bitmap, cpyMode);
Robert Phillipse14d3052017-02-15 13:18:21 -0500199
Greg Daniel7e1912a2018-02-08 09:15:33 -0500200 if (!image) {
201 return nullptr;
Robert Phillipse14d3052017-02-15 13:18:21 -0500202 }
203
Greg Daniel7e1912a2018-02-08 09:15:33 -0500204 return GrMakeCachedImageProxy(proxyProvider, std::move(image), fit);
Robert Phillipse14d3052017-02-15 13:18:21 -0500205}
206
Robert Phillips7a926392018-02-01 15:49:54 -0500207static void create_unique_key_for_image(const SkImage* image, GrUniqueKey* result) {
208 if (!image) {
209 result->reset(); // will be invalid
210 return;
211 }
212
213 if (const SkBitmap* bm = as_IB(image)->onPeekBitmap()) {
Greg Daniela4211122018-03-14 19:09:36 +0000214 if (!bm->isVolatile()) {
215 SkIPoint origin = bm->pixelRefOrigin();
216 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, bm->width(), bm->height());
217 GrMakeKeyFromImageID(result, bm->getGenerationID(), subset);
218 }
Robert Phillips7a926392018-02-01 15:49:54 -0500219 return;
220 }
221
222 GrMakeKeyFromImageID(result, image->uniqueID(), image->bounds());
223}
224
225sk_sp<GrTextureProxy> GrMakeCachedImageProxy(GrProxyProvider* proxyProvider,
Greg Daniel490695b2018-02-05 09:34:02 -0500226 sk_sp<SkImage> srcImage,
227 SkBackingFit fit) {
Robert Phillips7a926392018-02-01 15:49:54 -0500228 sk_sp<GrTextureProxy> proxy;
229 GrUniqueKey originalKey;
230
231 create_unique_key_for_image(srcImage.get(), &originalKey);
232
233 if (originalKey.isValid()) {
234 proxy = proxyProvider->findOrCreateProxyByUniqueKey(originalKey, kTopLeft_GrSurfaceOrigin);
235 }
236 if (!proxy) {
Greg Daniela4211122018-03-14 19:09:36 +0000237 proxy = proxyProvider->createTextureProxy(srcImage, kNone_GrSurfaceFlags, 1,
Brian Salomon58389b92018-03-07 13:01:25 -0500238 SkBudgeted::kYes, fit);
Robert Phillips7a926392018-02-01 15:49:54 -0500239 if (proxy && originalKey.isValid()) {
240 proxyProvider->assignUniqueKeyToProxy(originalKey, proxy.get());
Robert Phillips5c4b33b2018-03-20 16:23:08 -0400241 const SkBitmap* bm = as_IB(srcImage.get())->onPeekBitmap();
242 // When recording DDLs we do not want to install change listeners because doing
243 // so isn't threadsafe.
244 if (bm && !proxyProvider->recordingDDL()) {
Brian Salomon238069b2018-07-11 15:58:57 -0400245 GrInstallBitmapUniqueKeyInvalidator(originalKey, proxyProvider->contextUniqueID(),
246 bm->pixelRef());
Greg Daniela4211122018-03-14 19:09:36 +0000247 }
Robert Phillips7a926392018-02-01 15:49:54 -0500248 }
249 }
250
251 return proxy;
252}
253
rileya@google.com24f3ad12012-07-18 21:47:40 +0000254///////////////////////////////////////////////////////////////////////////////
255
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400256GrColor4f SkColorToPremulGrColor4f(SkColor c, const GrColorSpaceInfo& colorSpaceInfo) {
Brian Osman08a50e02018-06-15 15:06:48 -0400257 // We want to premultiply after color space conversion, so this is easy:
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400258 return SkColorToUnpremulGrColor4f(c, colorSpaceInfo).premul();
Brian Osman72ae4312016-10-20 16:53:45 -0400259}
260
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400261GrColor4f SkColorToPremulGrColor4fLegacy(SkColor c) {
262 return GrColor4f::FromGrColor(SkColorToUnpremulGrColor(c)).premul();
Brian Osman72ae4312016-10-20 16:53:45 -0400263}
264
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400265GrColor4f SkColorToUnpremulGrColor4f(SkColor c, const GrColorSpaceInfo& colorSpaceInfo) {
Brian Osman08a50e02018-06-15 15:06:48 -0400266 GrColor4f color = GrColor4f::FromGrColor(SkColorToUnpremulGrColor(c));
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400267 if (auto* xform = colorSpaceInfo.colorSpaceXformFromSRGB()) {
Brian Osman3567c142018-06-18 10:20:32 -0400268 color = xform->apply(color);
Brian Osmanc68d4aa2016-09-30 11:41:59 -0400269 }
Brian Osmanc68d4aa2016-09-30 11:41:59 -0400270 return color;
271}
272
273///////////////////////////////////////////////////////////////////////////////
274
Brian Osman2b23c4b2018-06-01 12:25:08 -0400275GrPixelConfig SkColorType2GrPixelConfig(const SkColorType type) {
Greg Daniel81e7bf82017-07-19 14:47:42 -0400276 switch (type) {
brianosmanc571c002016-03-17 13:01:26 -0700277 case kUnknown_SkColorType:
278 return kUnknown_GrPixelConfig;
279 case kAlpha_8_SkColorType:
280 return kAlpha_8_GrPixelConfig;
281 case kRGB_565_SkColorType:
282 return kRGB_565_GrPixelConfig;
283 case kARGB_4444_SkColorType:
284 return kRGBA_4444_GrPixelConfig;
285 case kRGBA_8888_SkColorType:
Brian Osman2b23c4b2018-06-01 12:25:08 -0400286 return kRGBA_8888_GrPixelConfig;
Brian Salomone41e1762018-01-25 14:07:47 -0500287 case kRGB_888x_SkColorType:
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400288 return kRGB_888_GrPixelConfig;
brianosmanc571c002016-03-17 13:01:26 -0700289 case kBGRA_8888_SkColorType:
Brian Osman2b23c4b2018-06-01 12:25:08 -0400290 return kBGRA_8888_GrPixelConfig;
Brian Salomone41e1762018-01-25 14:07:47 -0500291 case kRGBA_1010102_SkColorType:
Brian Osman10fc6fd2018-03-02 11:01:10 -0500292 return kRGBA_1010102_GrPixelConfig;
Brian Salomone41e1762018-01-25 14:07:47 -0500293 case kRGB_101010x_SkColorType:
294 return kUnknown_GrPixelConfig;
brianosmanc571c002016-03-17 13:01:26 -0700295 case kGray_8_SkColorType:
Brian Osman986563b2017-01-10 14:20:02 -0500296 return kGray_8_GrPixelConfig;
brianosmanc571c002016-03-17 13:01:26 -0700297 case kRGBA_F16_SkColorType:
298 return kRGBA_half_GrPixelConfig;
Mike Klein37854712018-06-26 11:43:06 -0400299 case kRGBA_F32_SkColorType:
300 return kRGBA_float_GrPixelConfig;
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000301 }
302 SkASSERT(0); // shouldn't get here
303 return kUnknown_GrPixelConfig;
304}
305
Brian Osman2b23c4b2018-06-01 12:25:08 -0400306GrPixelConfig SkImageInfo2GrPixelConfig(const SkImageInfo& info) {
307 return SkColorType2GrPixelConfig(info.colorType());
Greg Daniel81e7bf82017-07-19 14:47:42 -0400308}
309
brianosman396fcdb2016-07-22 06:26:11 -0700310bool GrPixelConfigToColorType(GrPixelConfig config, SkColorType* ctOut) {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400311 SkColorType ct = GrColorTypeToSkColorType(GrPixelConfigToColorType(config));
312 if (kUnknown_SkColorType != ct) {
313 if (ctOut) {
314 *ctOut = ct;
315 }
316 return true;
reed@google.combf790232013-12-13 19:45:58 +0000317 }
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400318 return false;
reed@google.combf790232013-12-13 19:45:58 +0000319}
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000320
bsalomonf1b7a1d2015-09-28 06:26:28 -0700321////////////////////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000322
Mike Reed185ba212017-04-28 12:31:05 -0400323static inline bool blend_requires_shader(const SkBlendMode mode) {
324 return SkBlendMode::kDst != mode;
bsalomonaa48d362015-10-01 08:34:17 -0700325}
326
Ethan Nicholas00543112018-07-31 09:44:36 -0400327#ifndef SK_IGNORE_GPU_DITHER
328static inline int32_t dither_range_type_for_config(GrPixelConfig dstConfig) {
329 switch (dstConfig) {
330 case kGray_8_GrPixelConfig:
331 case kGray_8_as_Lum_GrPixelConfig:
332 case kGray_8_as_Red_GrPixelConfig:
333 case kRGBA_8888_GrPixelConfig:
334 case kRGB_888_GrPixelConfig:
335 case kBGRA_8888_GrPixelConfig:
336 return 0;
337 case kRGB_565_GrPixelConfig:
338 return 1;
339 case kRGBA_4444_GrPixelConfig:
340 return 2;
341 case kUnknown_GrPixelConfig:
342 case kSRGBA_8888_GrPixelConfig:
343 case kSBGRA_8888_GrPixelConfig:
344 case kRGBA_1010102_GrPixelConfig:
345 case kAlpha_half_GrPixelConfig:
346 case kAlpha_half_as_Red_GrPixelConfig:
347 case kRGBA_float_GrPixelConfig:
348 case kRG_float_GrPixelConfig:
349 case kRGBA_half_GrPixelConfig:
350 case kAlpha_8_GrPixelConfig:
351 case kAlpha_8_as_Alpha_GrPixelConfig:
352 case kAlpha_8_as_Red_GrPixelConfig:
353 return -1;
354 }
355 SkASSERT(false);
356 return 0;
357}
358#endif
359
bsalomonf1b7a1d2015-09-28 06:26:28 -0700360static inline bool skpaint_to_grpaint_impl(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400361 const GrColorSpaceInfo& colorSpaceInfo,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700362 const SkPaint& skPaint,
363 const SkMatrix& viewM,
Brian Salomonaff329b2017-08-11 09:40:37 -0400364 std::unique_ptr<GrFragmentProcessor>* shaderProcessor,
Mike Reed7d954ad2016-10-28 15:42:34 -0400365 SkBlendMode* primColorMode,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700366 GrPaint* grPaint) {
Brian Osman08a50e02018-06-15 15:06:48 -0400367 // Convert SkPaint color to 4f format in the destination color space
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400368 GrColor4f origColor = SkColorToUnpremulGrColor4f(skPaint.getColor(), colorSpaceInfo);
brianosmana4535a32016-06-24 12:50:19 -0700369
Mike Reed3bc266b2018-01-20 22:24:41 +0000370 const GrFPArgs fpArgs(context, &viewM, skPaint.getFilterQuality(), &colorSpaceInfo);
Mike Reedbfadcf02018-01-20 22:24:21 +0000371
bsalomonf1b7a1d2015-09-28 06:26:28 -0700372 // Setup the initial color considering the shader, the SkPaint color, and the presence or not
373 // of per-vertex colors.
Brian Salomonaff329b2017-08-11 09:40:37 -0400374 std::unique_ptr<GrFragmentProcessor> shaderFP;
Mike Reed185ba212017-04-28 12:31:05 -0400375 if (!primColorMode || blend_requires_shader(*primColorMode)) {
bsalomonaa48d362015-10-01 08:34:17 -0700376 if (shaderProcessor) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400377 shaderFP = std::move(*shaderProcessor);
Florin Malita4aed1382017-05-25 10:38:07 -0400378 } else if (const auto* shader = as_SB(skPaint.getShader())) {
Mike Reedbfadcf02018-01-20 22:24:21 +0000379 shaderFP = shader->asFragmentProcessor(fpArgs);
Yuqian Liaad2ec62018-02-26 10:34:52 -0500380 if (!shaderFP) {
381 return false;
382 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700383 }
384 }
385
386 // Set this in below cases if the output of the shader/paint-color/paint-alpha/primXfermode is
387 // a known constant value. In that case we can simply apply a color filter during this
388 // conversion without converting the color filter to a GrFragmentProcessor.
389 bool applyColorFilterToPaintColor = false;
390 if (shaderFP) {
391 if (primColorMode) {
392 // There is a blend between the primitive color and the shader color. The shader sees
393 // the opaque paint color. The shader's output is blended using the provided mode by
394 // the primitive color. The blended color is then modulated by the paint's alpha.
395
396 // The geometry processor will insert the primitive color to start the color chain, so
397 // the GrPaint color will be ignored.
398
brianosman4cea3b92016-09-08 09:33:50 -0700399 GrColor4f shaderInput = origColor.opaque();
Brian Salomonaff329b2017-08-11 09:40:37 -0400400 shaderFP = GrFragmentProcessor::OverrideInput(std::move(shaderFP), shaderInput);
Mike Reed185ba212017-04-28 12:31:05 -0400401 shaderFP = GrXfermodeFragmentProcessor::MakeFromSrcProcessor(std::move(shaderFP),
402 *primColorMode);
403
bsalomonf1b7a1d2015-09-28 06:26:28 -0700404 // The above may return null if compose results in a pass through of the prim color.
405 if (shaderFP) {
Robert Phillips1c9686b2017-06-30 08:40:28 -0400406 grPaint->addColorFragmentProcessor(std::move(shaderFP));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700407 }
408
brianosmana4535a32016-06-24 12:50:19 -0700409 // We can ignore origColor here - alpha is unchanged by gamma
bsalomonf1b7a1d2015-09-28 06:26:28 -0700410 GrColor paintAlpha = SkColorAlphaToGrColor(skPaint.getColor());
411 if (GrColor_WHITE != paintAlpha) {
Brian Osman618d3042016-10-25 10:51:28 -0400412 // No gamut conversion - paintAlpha is a (linear) alpha value, splatted to all
413 // color channels. It's value should be treated as the same in ANY color space.
bungeman06ca8ec2016-06-09 08:01:03 -0700414 grPaint->addColorFragmentProcessor(GrConstColorProcessor::Make(
Brian Osman618d3042016-10-25 10:51:28 -0400415 GrColor4f::FromGrColor(paintAlpha),
Ethan Nicholase9d172a2017-11-20 12:12:24 -0500416 GrConstColorProcessor::InputMode::kModulateRGBA));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700417 }
418 } else {
419 // The shader's FP sees the paint unpremul color
brianosmana4535a32016-06-24 12:50:19 -0700420 grPaint->setColor4f(origColor);
bungeman06ca8ec2016-06-09 08:01:03 -0700421 grPaint->addColorFragmentProcessor(std::move(shaderFP));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700422 }
423 } else {
424 if (primColorMode) {
425 // There is a blend between the primitive color and the paint color. The blend considers
426 // the opaque paint color. The paint's alpha is applied to the post-blended color.
Brian Salomonaff329b2017-08-11 09:40:37 -0400427 auto processor = GrConstColorProcessor::Make(origColor.opaque(),
Ethan Nicholase9d172a2017-11-20 12:12:24 -0500428 GrConstColorProcessor::InputMode::kIgnore);
Mike Reed185ba212017-04-28 12:31:05 -0400429 processor = GrXfermodeFragmentProcessor::MakeFromSrcProcessor(std::move(processor),
430 *primColorMode);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700431 if (processor) {
bungeman06ca8ec2016-06-09 08:01:03 -0700432 grPaint->addColorFragmentProcessor(std::move(processor));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700433 }
434
brianosmana4535a32016-06-24 12:50:19 -0700435 grPaint->setColor4f(origColor.opaque());
bsalomonf1b7a1d2015-09-28 06:26:28 -0700436
brianosmana4535a32016-06-24 12:50:19 -0700437 // We can ignore origColor here - alpha is unchanged by gamma
bsalomonf1b7a1d2015-09-28 06:26:28 -0700438 GrColor paintAlpha = SkColorAlphaToGrColor(skPaint.getColor());
bsalomonaa48d362015-10-01 08:34:17 -0700439 if (GrColor_WHITE != paintAlpha) {
Brian Osman618d3042016-10-25 10:51:28 -0400440 // No gamut conversion - paintAlpha is a (linear) alpha value, splatted to all
441 // color channels. It's value should be treated as the same in ANY color space.
bungeman06ca8ec2016-06-09 08:01:03 -0700442 grPaint->addColorFragmentProcessor(GrConstColorProcessor::Make(
Brian Osman618d3042016-10-25 10:51:28 -0400443 GrColor4f::FromGrColor(paintAlpha),
Ethan Nicholase9d172a2017-11-20 12:12:24 -0500444 GrConstColorProcessor::InputMode::kModulateRGBA));
bsalomonaa48d362015-10-01 08:34:17 -0700445 }
bsalomonf1b7a1d2015-09-28 06:26:28 -0700446 } else {
447 // No shader, no primitive color.
brianosmana4535a32016-06-24 12:50:19 -0700448 grPaint->setColor4f(origColor.premul());
bsalomonf1b7a1d2015-09-28 06:26:28 -0700449 applyColorFilterToPaintColor = true;
450 }
451 }
452
453 SkColorFilter* colorFilter = skPaint.getColorFilter();
454 if (colorFilter) {
455 if (applyColorFilterToPaintColor) {
Brian Osman8f9c3252018-06-05 11:12:31 -0400456 grPaint->setColor4f(GrColor4f::FromSkColor4f(
Brian Osman04ae8ee2018-08-01 13:29:27 -0400457 colorFilter->filterColor4f(origColor.toSkColor4f(),
458 colorSpaceInfo.colorSpace())).premul());
bsalomonf1b7a1d2015-09-28 06:26:28 -0700459 } else {
Brian Salomon4cbb6e62017-10-25 15:12:19 -0400460 auto cfFP = colorFilter->asFragmentProcessor(context, colorSpaceInfo);
bsalomone25eea42015-09-29 06:38:55 -0700461 if (cfFP) {
bungeman06ca8ec2016-06-09 08:01:03 -0700462 grPaint->addColorFragmentProcessor(std::move(cfFP));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700463 } else {
464 return false;
465 }
466 }
467 }
468
Mike Reed80747ef2018-01-23 15:29:32 -0500469 SkMaskFilterBase* maskFilter = as_MFB(skPaint.getMaskFilter());
Robert Phillipsa29a9562016-10-20 09:40:55 -0400470 if (maskFilter) {
Mike Reedbfadcf02018-01-20 22:24:21 +0000471 if (auto mfFP = maskFilter->asFragmentProcessor(fpArgs)) {
472 grPaint->addCoverageFragmentProcessor(std::move(mfFP));
Robert Phillipsa29a9562016-10-20 09:40:55 -0400473 }
474 }
475
robertphillips4f037942016-02-09 05:09:27 -0800476 // When the xfermode is null on the SkPaint (meaning kSrcOver) we need the XPFactory field on
477 // the GrPaint to also be null (also kSrcOver).
478 SkASSERT(!grPaint->getXPFactory());
reed374772b2016-10-05 17:33:02 -0700479 if (!skPaint.isSrcOver()) {
480 grPaint->setXPFactory(SkBlendMode_AsXPFactory(skPaint.getBlendMode()));
robertphillips4f037942016-02-09 05:09:27 -0800481 }
mtklein775b8192014-12-02 09:11:25 -0800482
krajcevskif461a8f2014-06-19 14:14:06 -0700483#ifndef SK_IGNORE_GPU_DITHER
Florin Malitad4a70ee2017-06-19 10:21:43 -0400484 // Conservative default, in case GrPixelConfigToColorType() fails.
485 SkColorType ct = SkColorType::kRGB_565_SkColorType;
Brian Salomonf3569f02017-10-24 12:52:33 -0400486 GrPixelConfigToColorType(colorSpaceInfo.config(), &ct);
Brian Osman34ec3742018-07-03 10:40:57 -0400487 if (SkPaintPriv::ShouldDither(skPaint, ct) && grPaint->numColorFragmentProcessors() > 0) {
Ethan Nicholas00543112018-07-31 09:44:36 -0400488 int32_t ditherRange = dither_range_type_for_config(colorSpaceInfo.config());
489 if (ditherRange >= 0) {
490 static int ditherIndex = GrSkSLFP::NewIndex();
491 auto ditherFP = GrSkSLFP::Make(context, ditherIndex, "Dither", SKSL_DITHER_SRC,
492 &ditherRange, sizeof(ditherRange));
493 if (ditherFP) {
494 grPaint->addColorFragmentProcessor(std::move(ditherFP));
495 }
Brian Salomon0c15ae82017-07-19 15:39:56 +0000496 }
krajcevskif461a8f2014-06-19 14:14:06 -0700497 }
498#endif
bsalomonbed83a62015-04-15 14:18:34 -0700499 return true;
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000500}
501
Brian Salomonf3569f02017-10-24 12:52:33 -0400502bool SkPaintToGrPaint(GrContext* context, const GrColorSpaceInfo& colorSpaceInfo,
503 const SkPaint& skPaint, const SkMatrix& viewM, GrPaint* grPaint) {
504 return skpaint_to_grpaint_impl(context, colorSpaceInfo, skPaint, viewM, nullptr, nullptr,
505 grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700506}
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000507
bsalomonf1b7a1d2015-09-28 06:26:28 -0700508/** Replaces the SkShader (if any) on skPaint with the passed in GrFragmentProcessor. */
509bool SkPaintToGrPaintReplaceShader(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400510 const GrColorSpaceInfo& colorSpaceInfo,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700511 const SkPaint& skPaint,
Brian Salomonaff329b2017-08-11 09:40:37 -0400512 std::unique_ptr<GrFragmentProcessor> shaderFP,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700513 GrPaint* grPaint) {
514 if (!shaderFP) {
bsalomonc21b09e2015-08-28 18:46:56 -0700515 return false;
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000516 }
Brian Salomonf3569f02017-10-24 12:52:33 -0400517 return skpaint_to_grpaint_impl(context, colorSpaceInfo, skPaint, SkMatrix::I(), &shaderFP,
518 nullptr, grPaint);
commit-bot@chromium.org8dcff642014-05-15 20:32:48 +0000519}
reed8b26b992015-05-07 15:36:17 -0700520
bsalomonf1b7a1d2015-09-28 06:26:28 -0700521/** Ignores the SkShader (if any) on skPaint. */
522bool SkPaintToGrPaintNoShader(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400523 const GrColorSpaceInfo& colorSpaceInfo,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700524 const SkPaint& skPaint,
525 GrPaint* grPaint) {
526 // Use a ptr to a nullptr to to indicate that the SkShader is ignored and not replaced.
Robert Phillipsd3b37a12018-03-27 09:53:35 -0400527 std::unique_ptr<GrFragmentProcessor> nullShaderFP(nullptr);
528 return skpaint_to_grpaint_impl(context, colorSpaceInfo, skPaint, SkMatrix::I(), &nullShaderFP,
Brian Salomonf3569f02017-10-24 12:52:33 -0400529 nullptr, grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700530}
531
532/** Blends the SkPaint's shader (or color if no shader) with a per-primitive color which must
Mike Reed7d954ad2016-10-28 15:42:34 -0400533be setup as a vertex attribute using the specified SkBlendMode. */
bsalomonf1b7a1d2015-09-28 06:26:28 -0700534bool SkPaintToGrPaintWithXfermode(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400535 const GrColorSpaceInfo& colorSpaceInfo,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700536 const SkPaint& skPaint,
537 const SkMatrix& viewM,
Mike Reed7d954ad2016-10-28 15:42:34 -0400538 SkBlendMode primColorMode,
bsalomonf1b7a1d2015-09-28 06:26:28 -0700539 GrPaint* grPaint) {
Brian Salomonf3569f02017-10-24 12:52:33 -0400540 return skpaint_to_grpaint_impl(context, colorSpaceInfo, skPaint, viewM, nullptr, &primColorMode,
Mike Reed185ba212017-04-28 12:31:05 -0400541 grPaint);
bsalomonf1b7a1d2015-09-28 06:26:28 -0700542}
543
joshualitt33a5fce2015-11-18 13:28:51 -0800544bool SkPaintToGrPaintWithTexture(GrContext* context,
Brian Salomonf3569f02017-10-24 12:52:33 -0400545 const GrColorSpaceInfo& colorSpaceInfo,
joshualitt33a5fce2015-11-18 13:28:51 -0800546 const SkPaint& paint,
547 const SkMatrix& viewM,
Brian Salomonaff329b2017-08-11 09:40:37 -0400548 std::unique_ptr<GrFragmentProcessor> fp,
joshualitt33a5fce2015-11-18 13:28:51 -0800549 bool textureIsAlphaOnly,
550 GrPaint* grPaint) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400551 std::unique_ptr<GrFragmentProcessor> shaderFP;
joshualitt33a5fce2015-11-18 13:28:51 -0800552 if (textureIsAlphaOnly) {
Florin Malita4aed1382017-05-25 10:38:07 -0400553 if (const auto* shader = as_SB(paint.getShader())) {
Mike Reede3429e62018-01-19 11:43:34 -0500554 shaderFP = shader->asFragmentProcessor(GrFPArgs(
Florin Malitac6c5ead2018-04-11 15:33:40 -0400555 context, &viewM, paint.getFilterQuality(), &colorSpaceInfo));
joshualitt33a5fce2015-11-18 13:28:51 -0800556 if (!shaderFP) {
557 return false;
558 }
Brian Salomonaff329b2017-08-11 09:40:37 -0400559 std::unique_ptr<GrFragmentProcessor> fpSeries[] = { std::move(shaderFP), std::move(fp) };
bungeman06ca8ec2016-06-09 08:01:03 -0700560 shaderFP = GrFragmentProcessor::RunInSeries(fpSeries, 2);
joshualitt33a5fce2015-11-18 13:28:51 -0800561 } else {
Brian Salomonaff329b2017-08-11 09:40:37 -0400562 shaderFP = GrFragmentProcessor::MakeInputPremulAndMulByOutput(std::move(fp));
joshualitt33a5fce2015-11-18 13:28:51 -0800563 }
564 } else {
Mike Reed28eaed22018-02-01 11:24:53 -0500565 shaderFP = GrFragmentProcessor::MulChildByInputAlpha(std::move(fp));
joshualitt33a5fce2015-11-18 13:28:51 -0800566 }
567
Brian Salomonf3569f02017-10-24 12:52:33 -0400568 return SkPaintToGrPaintReplaceShader(context, colorSpaceInfo, paint, std::move(shaderFP),
569 grPaint);
joshualitt33a5fce2015-11-18 13:28:51 -0800570}
571
bsalomonf1b7a1d2015-09-28 06:26:28 -0700572
573////////////////////////////////////////////////////////////////////////////////////////////////
574
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400575GrSamplerState::Filter GrSkFilterQualityToGrFilterMode(SkFilterQuality paintFilterQuality,
576 const SkMatrix& viewM,
577 const SkMatrix& localM,
Brian Osmandb78cba2018-02-15 10:09:48 -0500578 bool sharpenMipmappedTextures,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400579 bool* doBicubic) {
joshualitt9bc39542015-08-12 12:57:54 -0700580 *doBicubic = false;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400581 GrSamplerState::Filter textureFilterMode;
joshualitt9bc39542015-08-12 12:57:54 -0700582 switch (paintFilterQuality) {
583 case kNone_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400584 textureFilterMode = GrSamplerState::Filter::kNearest;
joshualitt9bc39542015-08-12 12:57:54 -0700585 break;
586 case kLow_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400587 textureFilterMode = GrSamplerState::Filter::kBilerp;
joshualitt9bc39542015-08-12 12:57:54 -0700588 break;
589 case kMedium_SkFilterQuality: {
590 SkMatrix matrix;
591 matrix.setConcat(viewM, localM);
Brian Osmandb78cba2018-02-15 10:09:48 -0500592 // With sharp mips, we bias lookups by -0.5. That means our final LOD is >= 0 until the
593 // computed LOD is >= 0.5. At what scale factor does a texture get an LOD of 0.5?
594 //
595 // Want: 0 = log2(1/s) - 0.5
596 // 0.5 = log2(1/s)
597 // 2^0.5 = 1/s
598 // 1/2^0.5 = s
599 // 2^0.5/2 = s
600 SkScalar mipScale = sharpenMipmappedTextures ? SK_ScalarRoot2Over2 : SK_Scalar1;
601 if (matrix.getMinScale() < mipScale) {
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400602 textureFilterMode = GrSamplerState::Filter::kMipMap;
joshualitt9bc39542015-08-12 12:57:54 -0700603 } else {
604 // Don't trigger MIP level generation unnecessarily.
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400605 textureFilterMode = GrSamplerState::Filter::kBilerp;
joshualitt9bc39542015-08-12 12:57:54 -0700606 }
607 break;
608 }
609 case kHigh_SkFilterQuality: {
610 SkMatrix matrix;
611 matrix.setConcat(viewM, localM);
612 *doBicubic = GrBicubicEffect::ShouldUseBicubic(matrix, &textureFilterMode);
613 break;
614 }
615 default:
Mike Kleine54c75f2016-10-13 14:18:09 -0400616 // Should be unreachable. If not, fall back to mipmaps.
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400617 textureFilterMode = GrSamplerState::Filter::kMipMap;
joshualitt9bc39542015-08-12 12:57:54 -0700618 break;
619
620 }
621 return textureFilterMode;
622}