blob: 96472814c5e943aaa604983d11771bd9cc49c0de [file] [log] [blame]
bsalomonc55271f2015-11-09 11:55:57 -08001/*
2 * Copyright 2015 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.
6 */
7
8#include "SkGpuDevice.h"
bsalomonc55271f2015-11-09 11:55:57 -08009#include "GrBlurUtils.h"
10#include "GrCaps.h"
Brian Osman1cb41712017-10-19 12:54:52 -040011#include "GrColorSpaceXform.h"
Brian Osman11052242016-10-27 14:47:55 -040012#include "GrRenderTargetContext.h"
bsalomon6663acf2016-05-10 09:14:17 -070013#include "GrStyle.h"
Brian Osmane8e54582016-11-28 10:06:27 -050014#include "GrTextureAdjuster.h"
Brian Salomon34169692017-08-28 15:32:01 -040015#include "GrTextureMaker.h"
bsalomonc55271f2015-11-09 11:55:57 -080016#include "SkDraw.h"
Brian Osman3b655982017-03-07 16:58:08 -050017#include "SkGr.h"
Mike Reed80747ef2018-01-23 15:29:32 -050018#include "SkMaskFilterBase.h"
bsalomonc55271f2015-11-09 11:55:57 -080019#include "effects/GrBicubicEffect.h"
20#include "effects/GrSimpleTextureEffect.h"
21#include "effects/GrTextureDomain.h"
22
23static inline bool use_shader(bool textureIsAlphaOnly, const SkPaint& paint) {
24 return textureIsAlphaOnly && paint.getShader();
25}
26
bsalomonb1b01992015-11-18 10:56:08 -080027//////////////////////////////////////////////////////////////////////////////
28// Helper functions for dropping src rect constraint in bilerp mode.
29
30static const SkScalar kColorBleedTolerance = 0.001f;
31
32static bool has_aligned_samples(const SkRect& srcRect, const SkRect& transformedRect) {
33 // detect pixel disalignment
Brian Salomona911f8f2015-11-18 15:19:57 -050034 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) - transformedRect.left()) < kColorBleedTolerance &&
35 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) - transformedRect.top()) < kColorBleedTolerance &&
36 SkScalarAbs(transformedRect.width() - srcRect.width()) < kColorBleedTolerance &&
bsalomonb1b01992015-11-18 10:56:08 -080037 SkScalarAbs(transformedRect.height() - srcRect.height()) < kColorBleedTolerance) {
38 return true;
39 }
40 return false;
41}
42
43static bool may_color_bleed(const SkRect& srcRect,
44 const SkRect& transformedRect,
45 const SkMatrix& m,
Brian Salomon7c8460e2017-05-12 11:36:10 -040046 GrFSAAType fsaaType) {
bsalomonb1b01992015-11-18 10:56:08 -080047 // Only gets called if has_aligned_samples returned false.
48 // So we can assume that sampling is axis aligned but not texel aligned.
49 SkASSERT(!has_aligned_samples(srcRect, transformedRect));
50 SkRect innerSrcRect(srcRect), innerTransformedRect, outerTransformedRect(transformedRect);
Brian Salomon7c8460e2017-05-12 11:36:10 -040051 if (GrFSAAType::kUnifiedMSAA == fsaaType) {
bsalomonb1b01992015-11-18 10:56:08 -080052 innerSrcRect.inset(SK_Scalar1, SK_Scalar1);
53 } else {
54 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
55 }
56 m.mapRect(&innerTransformedRect, innerSrcRect);
57
58 // The gap between outerTransformedRect and innerTransformedRect
59 // represents the projection of the source border area, which is
60 // problematic for color bleeding. We must check whether any
61 // destination pixels sample the border area.
62 outerTransformedRect.inset(kColorBleedTolerance, kColorBleedTolerance);
63 innerTransformedRect.outset(kColorBleedTolerance, kColorBleedTolerance);
64 SkIRect outer, inner;
65 outerTransformedRect.round(&outer);
66 innerTransformedRect.round(&inner);
67 // If the inner and outer rects round to the same result, it means the
68 // border does not overlap any pixel centers. Yay!
69 return inner != outer;
70}
71
72static bool can_ignore_bilerp_constraint(const GrTextureProducer& producer,
73 const SkRect& srcRect,
74 const SkMatrix& srcRectToDeviceSpace,
Brian Salomon7c8460e2017-05-12 11:36:10 -040075 GrFSAAType fsaaType) {
bsalomonb1b01992015-11-18 10:56:08 -080076 if (srcRectToDeviceSpace.rectStaysRect()) {
77 // sampling is axis-aligned
78 SkRect transformedRect;
79 srcRectToDeviceSpace.mapRect(&transformedRect, srcRect);
80
81 if (has_aligned_samples(srcRect, transformedRect) ||
Brian Salomon7c8460e2017-05-12 11:36:10 -040082 !may_color_bleed(srcRect, transformedRect, srcRectToDeviceSpace, fsaaType)) {
bsalomonb1b01992015-11-18 10:56:08 -080083 return true;
84 }
85 }
86 return false;
87}
88
Brian Salomon34169692017-08-28 15:32:01 -040089/**
Brian Salomonb80ffee2018-05-23 16:39:39 -040090 * Checks whether the paint is compatible with using GrRenderTargetContext::drawTexture. It is more
91 * efficient than the GrTextureProducer general case.
Brian Salomon34169692017-08-28 15:32:01 -040092 */
Brian Salomonb80ffee2018-05-23 16:39:39 -040093static bool can_use_draw_texture(const SkPaint& paint) {
Brian Salomon34169692017-08-28 15:32:01 -040094 return (!paint.getColorFilter() && !paint.getShader() && !paint.getMaskFilter() &&
Brian Salomonb5ef1f92018-01-11 11:46:21 -050095 !paint.getImageFilter() && paint.getFilterQuality() < kMedium_SkFilterQuality &&
Brian Salomonb80ffee2018-05-23 16:39:39 -040096 paint.getBlendMode() == SkBlendMode::kSrcOver);
Brian Salomon34169692017-08-28 15:32:01 -040097}
98
Brian Salomonbe3c1d22018-05-21 12:54:39 -040099static void draw_texture(const SkPaint& paint, const SkMatrix& ctm, const SkRect* src,
Brian Salomonb80ffee2018-05-23 16:39:39 -0400100 const SkRect* dst, GrAA aa, SkCanvas::SrcRectConstraint constraint,
101 sk_sp<GrTextureProxy> proxy,
102
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400103 SkColorSpace* colorSpace, const GrClip& clip, GrRenderTargetContext* rtc) {
Brian Salomon34169692017-08-28 15:32:01 -0400104 SkASSERT(!(SkToBool(src) && !SkToBool(dst)));
105 SkRect srcRect = src ? *src : SkRect::MakeWH(proxy->width(), proxy->height());
106 SkRect dstRect = dst ? *dst : srcRect;
107 if (src && !SkRect::MakeIWH(proxy->width(), proxy->height()).contains(srcRect)) {
108 // Shrink the src rect to be within bounds and proportionately shrink the dst rect.
109 SkMatrix srcToDst;
110 srcToDst.setRectToRect(srcRect, dstRect, SkMatrix::kFill_ScaleToFit);
111 SkAssertResult(srcRect.intersect(SkRect::MakeIWH(proxy->width(), proxy->height())));
112 srcToDst.mapRect(&dstRect, srcRect);
113 }
Brian Osmanf06ead92017-10-30 13:47:41 -0400114 auto csxf = GrColorSpaceXform::Make(colorSpace, proxy->config(),
115 rtc->colorSpaceInfo().colorSpace());
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400116 GrSamplerState::Filter filter;
Brian Salomon34169692017-08-28 15:32:01 -0400117 switch (paint.getFilterQuality()) {
118 case kNone_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400119 filter = GrSamplerState::Filter::kNearest;
Brian Salomon34169692017-08-28 15:32:01 -0400120 break;
121 case kLow_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400122 filter = GrSamplerState::Filter::kBilerp;
Brian Salomon34169692017-08-28 15:32:01 -0400123 break;
124 case kMedium_SkFilterQuality:
125 case kHigh_SkFilterQuality:
126 SK_ABORT("Quality level not allowed.");
127 }
128 GrColor color = GrPixelConfigIsAlphaOnly(proxy->config())
129 ? SkColorToPremulGrColor(paint.getColor())
130 : SkColorAlphaToGrColor(paint.getColor());
Brian Salomonb80ffee2018-05-23 16:39:39 -0400131 rtc->drawTexture(clip, std::move(proxy), filter, color, srcRect, dstRect, aa, constraint, ctm,
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400132 std::move(csxf));
Brian Salomon34169692017-08-28 15:32:01 -0400133}
134
bsalomonb1b01992015-11-18 10:56:08 -0800135//////////////////////////////////////////////////////////////////////////////
136
Brian Salomon34169692017-08-28 15:32:01 -0400137void SkGpuDevice::drawPinnedTextureProxy(sk_sp<GrTextureProxy> proxy, uint32_t pinnedUniqueID,
138 SkColorSpace* colorSpace, SkAlphaType alphaType,
139 const SkRect* srcRect, const SkRect* dstRect,
140 SkCanvas::SrcRectConstraint constraint,
141 const SkMatrix& viewMatrix, const SkPaint& paint) {
Brian Salomon4e6cf912018-01-17 09:27:35 -0500142 GrAA aa = GrAA(paint.isAntiAlias());
Brian Salomonb80ffee2018-05-23 16:39:39 -0400143 if (can_use_draw_texture(paint)) {
144 draw_texture(paint, viewMatrix, srcRect, dstRect, aa, constraint, std::move(proxy),
145 colorSpace, this->clip(), fRenderTargetContext.get());
Brian Salomon34169692017-08-28 15:32:01 -0400146 return;
147 }
Greg Danielc77085d2017-11-01 16:38:48 -0400148 GrTextureAdjuster adjuster(this->context(), std::move(proxy), alphaType, pinnedUniqueID,
149 colorSpace);
Brian Salomon34169692017-08-28 15:32:01 -0400150 this->drawTextureProducer(&adjuster, srcRect, dstRect, constraint, viewMatrix, paint);
151}
152
153void SkGpuDevice::drawTextureMaker(GrTextureMaker* maker, int imageW, int imageH,
154 const SkRect* srcRect, const SkRect* dstRect,
155 SkCanvas::SrcRectConstraint constraint,
156 const SkMatrix& viewMatrix, const SkPaint& paint) {
Brian Salomon4e6cf912018-01-17 09:27:35 -0500157 GrAA aa = GrAA(paint.isAntiAlias());
Brian Salomonb80ffee2018-05-23 16:39:39 -0400158 if (can_use_draw_texture(paint)) {
Brian Salomon34169692017-08-28 15:32:01 -0400159 sk_sp<SkColorSpace> cs;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400160 // We've done enough checks above to allow us to pass ClampNearest() and not check for
Brian Salomon34169692017-08-28 15:32:01 -0400161 // scaling adjustments.
Brian Salomonf3569f02017-10-24 12:52:33 -0400162 auto proxy = maker->refTextureProxyForParams(
163 GrSamplerState::ClampNearest(), fRenderTargetContext->colorSpaceInfo().colorSpace(),
164 &cs, nullptr);
Brian Salomon34169692017-08-28 15:32:01 -0400165 if (!proxy) {
166 return;
167 }
Brian Salomonb80ffee2018-05-23 16:39:39 -0400168 draw_texture(paint, viewMatrix, srcRect, dstRect, aa, constraint, std::move(proxy),
169 cs.get(), this->clip(), fRenderTargetContext.get());
Brian Salomon34169692017-08-28 15:32:01 -0400170 return;
171 }
172 this->drawTextureProducer(maker, srcRect, dstRect, constraint, viewMatrix, paint);
173}
174
bsalomonb1b01992015-11-18 10:56:08 -0800175void SkGpuDevice::drawTextureProducer(GrTextureProducer* producer,
bsalomonc55271f2015-11-09 11:55:57 -0800176 const SkRect* srcRect,
177 const SkRect* dstRect,
178 SkCanvas::SrcRectConstraint constraint,
179 const SkMatrix& viewMatrix,
bsalomonc55271f2015-11-09 11:55:57 -0800180 const SkPaint& paint) {
ericrk369e9372016-02-05 15:32:36 -0800181 // This is the funnel for all non-tiled bitmap/image draw calls. Log a histogram entry.
182 SK_HISTOGRAM_BOOLEAN("DrawTiled", false);
183
bsalomonc55271f2015-11-09 11:55:57 -0800184 // Figure out the actual dst and src rect by clipping the src rect to the bounds of the
185 // adjuster. If the src rect is clipped then the dst rect must be recomputed. Also determine
186 // the matrix that maps the src rect to the dst rect.
187 SkRect clippedSrcRect;
188 SkRect clippedDstRect;
bsalomonb1b01992015-11-18 10:56:08 -0800189 const SkRect srcBounds = SkRect::MakeIWH(producer->width(), producer->height());
bsalomonc55271f2015-11-09 11:55:57 -0800190 SkMatrix srcToDstMatrix;
191 if (srcRect) {
192 if (!dstRect) {
bsalomon3aa5fce2015-11-12 09:59:44 -0800193 dstRect = &srcBounds;
bsalomonc55271f2015-11-09 11:55:57 -0800194 }
bsalomon3aa5fce2015-11-12 09:59:44 -0800195 if (!srcBounds.contains(*srcRect)) {
bsalomonc55271f2015-11-09 11:55:57 -0800196 clippedSrcRect = *srcRect;
bsalomon3aa5fce2015-11-12 09:59:44 -0800197 if (!clippedSrcRect.intersect(srcBounds)) {
bsalomonc55271f2015-11-09 11:55:57 -0800198 return;
199 }
200 if (!srcToDstMatrix.setRectToRect(*srcRect, *dstRect, SkMatrix::kFill_ScaleToFit)) {
201 return;
202 }
203 srcToDstMatrix.mapRect(&clippedDstRect, clippedSrcRect);
204 } else {
205 clippedSrcRect = *srcRect;
206 clippedDstRect = *dstRect;
207 if (!srcToDstMatrix.setRectToRect(*srcRect, *dstRect, SkMatrix::kFill_ScaleToFit)) {
208 return;
209 }
210 }
211 } else {
bsalomon3aa5fce2015-11-12 09:59:44 -0800212 clippedSrcRect = srcBounds;
bsalomonc55271f2015-11-09 11:55:57 -0800213 if (dstRect) {
214 clippedDstRect = *dstRect;
bsalomon3aa5fce2015-11-12 09:59:44 -0800215 if (!srcToDstMatrix.setRectToRect(srcBounds, *dstRect, SkMatrix::kFill_ScaleToFit)) {
bsalomonc55271f2015-11-09 11:55:57 -0800216 return;
217 }
218 } else {
bsalomon3aa5fce2015-11-12 09:59:44 -0800219 clippedDstRect = srcBounds;
bsalomonc55271f2015-11-09 11:55:57 -0800220 srcToDstMatrix.reset();
221 }
222 }
223
ericrk983294f2016-04-18 09:14:00 -0700224 // Now that we have both the view and srcToDst matrices, log our scale factor.
225 LogDrawScaleFactor(SkMatrix::Concat(viewMatrix, srcToDstMatrix), paint.getFilterQuality());
226
bsalomonf1ecd212015-12-09 17:06:02 -0800227 this->drawTextureProducerImpl(producer, clippedSrcRect, clippedDstRect, constraint, viewMatrix,
Brian Salomon34169692017-08-28 15:32:01 -0400228 srcToDstMatrix, paint);
bsalomonc55271f2015-11-09 11:55:57 -0800229}
230
bsalomonb1b01992015-11-18 10:56:08 -0800231void SkGpuDevice::drawTextureProducerImpl(GrTextureProducer* producer,
bsalomonc55271f2015-11-09 11:55:57 -0800232 const SkRect& clippedSrcRect,
233 const SkRect& clippedDstRect,
234 SkCanvas::SrcRectConstraint constraint,
235 const SkMatrix& viewMatrix,
236 const SkMatrix& srcToDstMatrix,
bsalomonc55271f2015-11-09 11:55:57 -0800237 const SkPaint& paint) {
Brian Salomon09d994e2016-12-21 11:14:46 -0500238 // Specifying the texture coords as local coordinates is an attempt to enable more GrDrawOp
239 // combining by not baking anything about the srcRect, dstRect, or viewMatrix, into the texture
240 // FP. In the future this should be an opaque optimization enabled by the combination of
241 // GrDrawOp/GP and FP.
bsalomonc55271f2015-11-09 11:55:57 -0800242 const SkMaskFilter* mf = paint.getMaskFilter();
Mike Reed547c8592018-02-05 15:59:23 -0500243 if (mf && as_MFB(mf)->hasFragmentProcessor()) {
244 mf = nullptr;
245 }
bsalomonc55271f2015-11-09 11:55:57 -0800246 // The shader expects proper local coords, so we can't replace local coords with texture coords
247 // if the shader will be used. If we have a mask filter we will change the underlying geometry
248 // that is rendered.
bsalomonf1ecd212015-12-09 17:06:02 -0800249 bool canUseTextureCoordsAsLocalCoords = !use_shader(producer->isAlphaOnly(), paint) && !mf;
bsalomonc55271f2015-11-09 11:55:57 -0800250
251 bool doBicubic;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400252 GrSamplerState::Filter fm = GrSkFilterQualityToGrFilterMode(
Brian Osmandb78cba2018-02-15 10:09:48 -0500253 paint.getFilterQuality(), viewMatrix, srcToDstMatrix,
254 fContext->contextPriv().sharpenMipmappedTextures(), &doBicubic);
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400255 const GrSamplerState::Filter* filterMode = doBicubic ? nullptr : &fm;
bsalomonc55271f2015-11-09 11:55:57 -0800256
Brian Osmane8e54582016-11-28 10:06:27 -0500257 GrTextureProducer::FilterConstraint constraintMode;
bsalomonc55271f2015-11-09 11:55:57 -0800258 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
259 constraintMode = GrTextureAdjuster::kNo_FilterConstraint;
260 } else {
261 constraintMode = GrTextureAdjuster::kYes_FilterConstraint;
262 }
halcanary9d524f22016-03-29 09:03:52 -0700263
bsalomonc55271f2015-11-09 11:55:57 -0800264 // If we have to outset for AA then we will generate texture coords outside the src rect. The
265 // same happens for any mask filter that extends the bounds rendered in the dst.
266 // This is conservative as a mask filter does not have to expand the bounds rendered.
267 bool coordsAllInsideSrcRect = !paint.isAntiAlias() && !mf;
268
bsalomonb1b01992015-11-18 10:56:08 -0800269 // Check for optimization to drop the src rect constraint when on bilerp.
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400270 if (filterMode && GrSamplerState::Filter::kBilerp == *filterMode &&
bsalomonb1b01992015-11-18 10:56:08 -0800271 GrTextureAdjuster::kYes_FilterConstraint == constraintMode && coordsAllInsideSrcRect) {
272 SkMatrix combinedMatrix;
273 combinedMatrix.setConcat(viewMatrix, srcToDstMatrix);
274 if (can_ignore_bilerp_constraint(*producer, clippedSrcRect, combinedMatrix,
Brian Salomon7c8460e2017-05-12 11:36:10 -0400275 fRenderTargetContext->fsaaType())) {
bsalomonb1b01992015-11-18 10:56:08 -0800276 constraintMode = GrTextureAdjuster::kNo_FilterConstraint;
277 }
278 }
279
bsalomon3aa5fce2015-11-12 09:59:44 -0800280 const SkMatrix* textureMatrix;
281 SkMatrix tempMatrix;
282 if (canUseTextureCoordsAsLocalCoords) {
283 textureMatrix = &SkMatrix::I();
284 } else {
285 if (!srcToDstMatrix.invert(&tempMatrix)) {
286 return;
287 }
288 textureMatrix = &tempMatrix;
289 }
Brian Salomonf3569f02017-10-24 12:52:33 -0400290 auto fp = producer->createFragmentProcessor(
291 *textureMatrix, clippedSrcRect, constraintMode, coordsAllInsideSrcRect, filterMode,
292 fRenderTargetContext->colorSpaceInfo().colorSpace());
bsalomonc55271f2015-11-09 11:55:57 -0800293 if (!fp) {
294 return;
295 }
joshualitt33a5fce2015-11-18 13:28:51 -0800296
bsalomonc55271f2015-11-09 11:55:57 -0800297 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400298 if (!SkPaintToGrPaintWithTexture(fContext.get(), fRenderTargetContext->colorSpaceInfo(), paint,
299 viewMatrix, std::move(fp), producer->isAlphaOnly(),
300 &grPaint)) {
bsalomonc55271f2015-11-09 11:55:57 -0800301 return;
302 }
Chris Dalton3b51df12017-11-27 14:33:06 -0700303 GrAA aa = GrAA(paint.isAntiAlias());
bsalomonc55271f2015-11-09 11:55:57 -0800304 if (canUseTextureCoordsAsLocalCoords) {
Brian Salomon34169692017-08-28 15:32:01 -0400305 fRenderTargetContext->fillRectToRect(this->clip(), std::move(grPaint), aa, viewMatrix,
Brian Salomon82f44312017-01-11 13:42:54 -0500306 clippedDstRect, clippedSrcRect);
bsalomonc55271f2015-11-09 11:55:57 -0800307 return;
308 }
309
310 if (!mf) {
Brian Salomon34169692017-08-28 15:32:01 -0400311 fRenderTargetContext->drawRect(this->clip(), std::move(grPaint), aa, viewMatrix,
312 clippedDstRect);
bsalomonc55271f2015-11-09 11:55:57 -0800313 return;
314 }
315
316 // First see if we can do the draw + mask filter direct to the dst.
robertphillips6cfb1062016-08-22 16:13:48 -0700317 if (viewMatrix.isScaleTranslate()) {
318 SkRect devClippedDstRect;
319 viewMatrix.mapRectScaleTranslate(&devClippedDstRect, clippedDstRect);
320
321 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle);
Mike Reed80747ef2018-01-23 15:29:32 -0500322 if (as_MFB(mf)->directFilterRRectMaskGPU(fContext.get(),
323 fRenderTargetContext.get(),
324 std::move(grPaint),
325 this->clip(),
326 viewMatrix,
327 rec,
328 SkRRect::MakeRect(clippedDstRect),
329 SkRRect::MakeRect(devClippedDstRect))) {
robertphillips6cfb1062016-08-22 16:13:48 -0700330 return;
331 }
bsalomonc55271f2015-11-09 11:55:57 -0800332 }
robertphillips6cfb1062016-08-22 16:13:48 -0700333
bsalomonc55271f2015-11-09 11:55:57 -0800334 SkPath rectPath;
335 rectPath.addRect(clippedDstRect);
robertphillips0e7029e2015-11-30 05:45:06 -0800336 rectPath.setIsVolatile(true);
Brian Salomon0166cfd2017-03-13 17:58:25 -0400337 GrBlurUtils::drawPathWithMaskFilter(this->context(), fRenderTargetContext.get(), this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -0500338 rectPath, std::move(grPaint), aa, viewMatrix, mf,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500339 GrStyle::SimpleFill(), true);
bsalomonc55271f2015-11-09 11:55:57 -0800340}