blob: a29e4ec684ffc5edd6159930581dabb7d6c41260 [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"
Robert Phillips27927a52018-08-20 13:18:12 -040013#include "GrShape.h"
bsalomon6663acf2016-05-10 09:14:17 -070014#include "GrStyle.h"
Brian Osmane8e54582016-11-28 10:06:27 -050015#include "GrTextureAdjuster.h"
Brian Salomon34169692017-08-28 15:32:01 -040016#include "GrTextureMaker.h"
bsalomonc55271f2015-11-09 11:55:57 -080017#include "SkDraw.h"
Brian Osman3b655982017-03-07 16:58:08 -050018#include "SkGr.h"
Mike Reed80747ef2018-01-23 15:29:32 -050019#include "SkMaskFilterBase.h"
bsalomonc55271f2015-11-09 11:55:57 -080020#include "effects/GrBicubicEffect.h"
21#include "effects/GrSimpleTextureEffect.h"
22#include "effects/GrTextureDomain.h"
23
24static inline bool use_shader(bool textureIsAlphaOnly, const SkPaint& paint) {
25 return textureIsAlphaOnly && paint.getShader();
26}
27
bsalomonb1b01992015-11-18 10:56:08 -080028//////////////////////////////////////////////////////////////////////////////
29// Helper functions for dropping src rect constraint in bilerp mode.
30
31static const SkScalar kColorBleedTolerance = 0.001f;
32
33static bool has_aligned_samples(const SkRect& srcRect, const SkRect& transformedRect) {
34 // detect pixel disalignment
Brian Salomona911f8f2015-11-18 15:19:57 -050035 if (SkScalarAbs(SkScalarRoundToScalar(transformedRect.left()) - transformedRect.left()) < kColorBleedTolerance &&
36 SkScalarAbs(SkScalarRoundToScalar(transformedRect.top()) - transformedRect.top()) < kColorBleedTolerance &&
37 SkScalarAbs(transformedRect.width() - srcRect.width()) < kColorBleedTolerance &&
bsalomonb1b01992015-11-18 10:56:08 -080038 SkScalarAbs(transformedRect.height() - srcRect.height()) < kColorBleedTolerance) {
39 return true;
40 }
41 return false;
42}
43
44static bool may_color_bleed(const SkRect& srcRect,
45 const SkRect& transformedRect,
46 const SkMatrix& m,
Brian Salomon7c8460e2017-05-12 11:36:10 -040047 GrFSAAType fsaaType) {
bsalomonb1b01992015-11-18 10:56:08 -080048 // Only gets called if has_aligned_samples returned false.
49 // So we can assume that sampling is axis aligned but not texel aligned.
50 SkASSERT(!has_aligned_samples(srcRect, transformedRect));
51 SkRect innerSrcRect(srcRect), innerTransformedRect, outerTransformedRect(transformedRect);
Brian Salomon7c8460e2017-05-12 11:36:10 -040052 if (GrFSAAType::kUnifiedMSAA == fsaaType) {
bsalomonb1b01992015-11-18 10:56:08 -080053 innerSrcRect.inset(SK_Scalar1, SK_Scalar1);
54 } else {
55 innerSrcRect.inset(SK_ScalarHalf, SK_ScalarHalf);
56 }
57 m.mapRect(&innerTransformedRect, innerSrcRect);
58
59 // The gap between outerTransformedRect and innerTransformedRect
60 // represents the projection of the source border area, which is
61 // problematic for color bleeding. We must check whether any
62 // destination pixels sample the border area.
63 outerTransformedRect.inset(kColorBleedTolerance, kColorBleedTolerance);
64 innerTransformedRect.outset(kColorBleedTolerance, kColorBleedTolerance);
65 SkIRect outer, inner;
66 outerTransformedRect.round(&outer);
67 innerTransformedRect.round(&inner);
68 // If the inner and outer rects round to the same result, it means the
69 // border does not overlap any pixel centers. Yay!
70 return inner != outer;
71}
72
73static bool can_ignore_bilerp_constraint(const GrTextureProducer& producer,
74 const SkRect& srcRect,
75 const SkMatrix& srcRectToDeviceSpace,
Brian Salomon7c8460e2017-05-12 11:36:10 -040076 GrFSAAType fsaaType) {
bsalomonb1b01992015-11-18 10:56:08 -080077 if (srcRectToDeviceSpace.rectStaysRect()) {
78 // sampling is axis-aligned
79 SkRect transformedRect;
80 srcRectToDeviceSpace.mapRect(&transformedRect, srcRect);
81
82 if (has_aligned_samples(srcRect, transformedRect) ||
Brian Salomon7c8460e2017-05-12 11:36:10 -040083 !may_color_bleed(srcRect, transformedRect, srcRectToDeviceSpace, fsaaType)) {
bsalomonb1b01992015-11-18 10:56:08 -080084 return true;
85 }
86 }
87 return false;
88}
89
Brian Salomon34169692017-08-28 15:32:01 -040090/**
Brian Salomonb80ffee2018-05-23 16:39:39 -040091 * Checks whether the paint is compatible with using GrRenderTargetContext::drawTexture. It is more
92 * efficient than the GrTextureProducer general case.
Brian Salomon34169692017-08-28 15:32:01 -040093 */
Brian Salomonb80ffee2018-05-23 16:39:39 -040094static bool can_use_draw_texture(const SkPaint& paint) {
Brian Salomon34169692017-08-28 15:32:01 -040095 return (!paint.getColorFilter() && !paint.getShader() && !paint.getMaskFilter() &&
Brian Salomonb5ef1f92018-01-11 11:46:21 -050096 !paint.getImageFilter() && paint.getFilterQuality() < kMedium_SkFilterQuality &&
Brian Salomonb80ffee2018-05-23 16:39:39 -040097 paint.getBlendMode() == SkBlendMode::kSrcOver);
Brian Salomon34169692017-08-28 15:32:01 -040098}
99
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400100static void draw_texture(const SkPaint& paint, const SkMatrix& ctm, const SkRect* src,
Brian Salomonb80ffee2018-05-23 16:39:39 -0400101 const SkRect* dst, GrAA aa, SkCanvas::SrcRectConstraint constraint,
Brian Osman21fc5ce2018-08-27 20:36:19 +0000102 sk_sp<GrTextureProxy> proxy, SkAlphaType alphaType,
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 }
Mike Kleine03a1762018-08-22 11:52:16 -0400114 auto textureXform =
Brian Osman21fc5ce2018-08-27 20:36:19 +0000115 GrColorSpaceXform::Make(colorSpace , alphaType,
Mike Kleine03a1762018-08-22 11:52:16 -0400116 rtc->colorSpaceInfo().colorSpace(), kPremul_SkAlphaType);
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400117 GrSamplerState::Filter filter;
Brian Salomon34169692017-08-28 15:32:01 -0400118 switch (paint.getFilterQuality()) {
119 case kNone_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400120 filter = GrSamplerState::Filter::kNearest;
Brian Salomon34169692017-08-28 15:32:01 -0400121 break;
122 case kLow_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400123 filter = GrSamplerState::Filter::kBilerp;
Brian Salomon34169692017-08-28 15:32:01 -0400124 break;
125 case kMedium_SkFilterQuality:
126 case kHigh_SkFilterQuality:
127 SK_ABORT("Quality level not allowed.");
128 }
Brian Osman3ebd3542018-07-30 14:36:53 -0400129 GrColor color;
130 sk_sp<GrColorSpaceXform> paintColorXform = nullptr;
131 if (GrPixelConfigIsAlphaOnly(proxy->config())) {
132 // Leave the color unpremul if we're going to transform it in the vertex shader
133 paintColorXform = rtc->colorSpaceInfo().refColorSpaceXformFromSRGB();
134 color = paintColorXform ? SkColorToUnpremulGrColor(paint.getColor())
135 : SkColorToPremulGrColor(paint.getColor());
136 } else {
Brian Osmanb0f4d0a2018-09-05 14:16:27 +0000137 color = GrColorPackA4(paint.getAlpha());
Brian Osman3ebd3542018-07-30 14:36:53 -0400138 }
Brian Salomonb80ffee2018-05-23 16:39:39 -0400139 rtc->drawTexture(clip, std::move(proxy), filter, color, srcRect, dstRect, aa, constraint, ctm,
Brian Osman3ebd3542018-07-30 14:36:53 -0400140 std::move(textureXform), std::move(paintColorXform));
Brian Salomon34169692017-08-28 15:32:01 -0400141}
142
bsalomonb1b01992015-11-18 10:56:08 -0800143//////////////////////////////////////////////////////////////////////////////
144
Brian Salomon34169692017-08-28 15:32:01 -0400145void SkGpuDevice::drawPinnedTextureProxy(sk_sp<GrTextureProxy> proxy, uint32_t pinnedUniqueID,
146 SkColorSpace* colorSpace, SkAlphaType alphaType,
147 const SkRect* srcRect, const SkRect* dstRect,
148 SkCanvas::SrcRectConstraint constraint,
149 const SkMatrix& viewMatrix, const SkPaint& paint) {
Brian Salomon4e6cf912018-01-17 09:27:35 -0500150 GrAA aa = GrAA(paint.isAntiAlias());
Brian Salomonb80ffee2018-05-23 16:39:39 -0400151 if (can_use_draw_texture(paint)) {
152 draw_texture(paint, viewMatrix, srcRect, dstRect, aa, constraint, std::move(proxy),
Brian Osman21fc5ce2018-08-27 20:36:19 +0000153 alphaType, colorSpace, this->clip(), fRenderTargetContext.get());
Brian Salomon34169692017-08-28 15:32:01 -0400154 return;
155 }
Greg Danielc77085d2017-11-01 16:38:48 -0400156 GrTextureAdjuster adjuster(this->context(), std::move(proxy), alphaType, pinnedUniqueID,
157 colorSpace);
Brian Salomon34169692017-08-28 15:32:01 -0400158 this->drawTextureProducer(&adjuster, srcRect, dstRect, constraint, viewMatrix, paint);
159}
160
161void SkGpuDevice::drawTextureMaker(GrTextureMaker* maker, int imageW, int imageH,
162 const SkRect* srcRect, const SkRect* dstRect,
163 SkCanvas::SrcRectConstraint constraint,
164 const SkMatrix& viewMatrix, const SkPaint& paint) {
Brian Salomon4e6cf912018-01-17 09:27:35 -0500165 GrAA aa = GrAA(paint.isAntiAlias());
Brian Salomonb80ffee2018-05-23 16:39:39 -0400166 if (can_use_draw_texture(paint)) {
Brian Salomon34169692017-08-28 15:32:01 -0400167 sk_sp<SkColorSpace> cs;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400168 // We've done enough checks above to allow us to pass ClampNearest() and not check for
Brian Salomon34169692017-08-28 15:32:01 -0400169 // scaling adjustments.
Brian Salomonf3569f02017-10-24 12:52:33 -0400170 auto proxy = maker->refTextureProxyForParams(
171 GrSamplerState::ClampNearest(), fRenderTargetContext->colorSpaceInfo().colorSpace(),
172 &cs, nullptr);
Brian Salomon34169692017-08-28 15:32:01 -0400173 if (!proxy) {
174 return;
175 }
Brian Salomonb80ffee2018-05-23 16:39:39 -0400176 draw_texture(paint, viewMatrix, srcRect, dstRect, aa, constraint, std::move(proxy),
Brian Osman21fc5ce2018-08-27 20:36:19 +0000177 maker->alphaType(), cs.get(), this->clip(), fRenderTargetContext.get());
Brian Salomon34169692017-08-28 15:32:01 -0400178 return;
179 }
180 this->drawTextureProducer(maker, srcRect, dstRect, constraint, viewMatrix, paint);
181}
182
bsalomonb1b01992015-11-18 10:56:08 -0800183void SkGpuDevice::drawTextureProducer(GrTextureProducer* producer,
bsalomonc55271f2015-11-09 11:55:57 -0800184 const SkRect* srcRect,
185 const SkRect* dstRect,
186 SkCanvas::SrcRectConstraint constraint,
187 const SkMatrix& viewMatrix,
bsalomonc55271f2015-11-09 11:55:57 -0800188 const SkPaint& paint) {
ericrk369e9372016-02-05 15:32:36 -0800189 // This is the funnel for all non-tiled bitmap/image draw calls. Log a histogram entry.
190 SK_HISTOGRAM_BOOLEAN("DrawTiled", false);
191
bsalomonc55271f2015-11-09 11:55:57 -0800192 // Figure out the actual dst and src rect by clipping the src rect to the bounds of the
193 // adjuster. If the src rect is clipped then the dst rect must be recomputed. Also determine
194 // the matrix that maps the src rect to the dst rect.
195 SkRect clippedSrcRect;
196 SkRect clippedDstRect;
bsalomonb1b01992015-11-18 10:56:08 -0800197 const SkRect srcBounds = SkRect::MakeIWH(producer->width(), producer->height());
bsalomonc55271f2015-11-09 11:55:57 -0800198 SkMatrix srcToDstMatrix;
199 if (srcRect) {
200 if (!dstRect) {
bsalomon3aa5fce2015-11-12 09:59:44 -0800201 dstRect = &srcBounds;
bsalomonc55271f2015-11-09 11:55:57 -0800202 }
bsalomon3aa5fce2015-11-12 09:59:44 -0800203 if (!srcBounds.contains(*srcRect)) {
bsalomonc55271f2015-11-09 11:55:57 -0800204 clippedSrcRect = *srcRect;
bsalomon3aa5fce2015-11-12 09:59:44 -0800205 if (!clippedSrcRect.intersect(srcBounds)) {
bsalomonc55271f2015-11-09 11:55:57 -0800206 return;
207 }
208 if (!srcToDstMatrix.setRectToRect(*srcRect, *dstRect, SkMatrix::kFill_ScaleToFit)) {
209 return;
210 }
211 srcToDstMatrix.mapRect(&clippedDstRect, clippedSrcRect);
212 } else {
213 clippedSrcRect = *srcRect;
214 clippedDstRect = *dstRect;
215 if (!srcToDstMatrix.setRectToRect(*srcRect, *dstRect, SkMatrix::kFill_ScaleToFit)) {
216 return;
217 }
218 }
219 } else {
bsalomon3aa5fce2015-11-12 09:59:44 -0800220 clippedSrcRect = srcBounds;
bsalomonc55271f2015-11-09 11:55:57 -0800221 if (dstRect) {
222 clippedDstRect = *dstRect;
bsalomon3aa5fce2015-11-12 09:59:44 -0800223 if (!srcToDstMatrix.setRectToRect(srcBounds, *dstRect, SkMatrix::kFill_ScaleToFit)) {
bsalomonc55271f2015-11-09 11:55:57 -0800224 return;
225 }
226 } else {
bsalomon3aa5fce2015-11-12 09:59:44 -0800227 clippedDstRect = srcBounds;
bsalomonc55271f2015-11-09 11:55:57 -0800228 srcToDstMatrix.reset();
229 }
230 }
231
ericrk983294f2016-04-18 09:14:00 -0700232 // Now that we have both the view and srcToDst matrices, log our scale factor.
233 LogDrawScaleFactor(SkMatrix::Concat(viewMatrix, srcToDstMatrix), paint.getFilterQuality());
234
bsalomonf1ecd212015-12-09 17:06:02 -0800235 this->drawTextureProducerImpl(producer, clippedSrcRect, clippedDstRect, constraint, viewMatrix,
Brian Salomon34169692017-08-28 15:32:01 -0400236 srcToDstMatrix, paint);
bsalomonc55271f2015-11-09 11:55:57 -0800237}
238
bsalomonb1b01992015-11-18 10:56:08 -0800239void SkGpuDevice::drawTextureProducerImpl(GrTextureProducer* producer,
bsalomonc55271f2015-11-09 11:55:57 -0800240 const SkRect& clippedSrcRect,
241 const SkRect& clippedDstRect,
242 SkCanvas::SrcRectConstraint constraint,
243 const SkMatrix& viewMatrix,
244 const SkMatrix& srcToDstMatrix,
bsalomonc55271f2015-11-09 11:55:57 -0800245 const SkPaint& paint) {
Brian Salomon09d994e2016-12-21 11:14:46 -0500246 // Specifying the texture coords as local coordinates is an attempt to enable more GrDrawOp
247 // combining by not baking anything about the srcRect, dstRect, or viewMatrix, into the texture
248 // FP. In the future this should be an opaque optimization enabled by the combination of
249 // GrDrawOp/GP and FP.
bsalomonc55271f2015-11-09 11:55:57 -0800250 const SkMaskFilter* mf = paint.getMaskFilter();
Mike Reed547c8592018-02-05 15:59:23 -0500251 if (mf && as_MFB(mf)->hasFragmentProcessor()) {
252 mf = nullptr;
253 }
bsalomonc55271f2015-11-09 11:55:57 -0800254 // The shader expects proper local coords, so we can't replace local coords with texture coords
255 // if the shader will be used. If we have a mask filter we will change the underlying geometry
256 // that is rendered.
bsalomonf1ecd212015-12-09 17:06:02 -0800257 bool canUseTextureCoordsAsLocalCoords = !use_shader(producer->isAlphaOnly(), paint) && !mf;
bsalomonc55271f2015-11-09 11:55:57 -0800258
259 bool doBicubic;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400260 GrSamplerState::Filter fm = GrSkFilterQualityToGrFilterMode(
Brian Osmandb78cba2018-02-15 10:09:48 -0500261 paint.getFilterQuality(), viewMatrix, srcToDstMatrix,
262 fContext->contextPriv().sharpenMipmappedTextures(), &doBicubic);
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400263 const GrSamplerState::Filter* filterMode = doBicubic ? nullptr : &fm;
bsalomonc55271f2015-11-09 11:55:57 -0800264
Brian Osmane8e54582016-11-28 10:06:27 -0500265 GrTextureProducer::FilterConstraint constraintMode;
bsalomonc55271f2015-11-09 11:55:57 -0800266 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
267 constraintMode = GrTextureAdjuster::kNo_FilterConstraint;
268 } else {
269 constraintMode = GrTextureAdjuster::kYes_FilterConstraint;
270 }
halcanary9d524f22016-03-29 09:03:52 -0700271
bsalomonc55271f2015-11-09 11:55:57 -0800272 // If we have to outset for AA then we will generate texture coords outside the src rect. The
273 // same happens for any mask filter that extends the bounds rendered in the dst.
274 // This is conservative as a mask filter does not have to expand the bounds rendered.
275 bool coordsAllInsideSrcRect = !paint.isAntiAlias() && !mf;
276
bsalomonb1b01992015-11-18 10:56:08 -0800277 // Check for optimization to drop the src rect constraint when on bilerp.
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400278 if (filterMode && GrSamplerState::Filter::kBilerp == *filterMode &&
bsalomonb1b01992015-11-18 10:56:08 -0800279 GrTextureAdjuster::kYes_FilterConstraint == constraintMode && coordsAllInsideSrcRect) {
280 SkMatrix combinedMatrix;
281 combinedMatrix.setConcat(viewMatrix, srcToDstMatrix);
282 if (can_ignore_bilerp_constraint(*producer, clippedSrcRect, combinedMatrix,
Brian Salomon7c8460e2017-05-12 11:36:10 -0400283 fRenderTargetContext->fsaaType())) {
bsalomonb1b01992015-11-18 10:56:08 -0800284 constraintMode = GrTextureAdjuster::kNo_FilterConstraint;
285 }
286 }
287
bsalomon3aa5fce2015-11-12 09:59:44 -0800288 const SkMatrix* textureMatrix;
289 SkMatrix tempMatrix;
290 if (canUseTextureCoordsAsLocalCoords) {
291 textureMatrix = &SkMatrix::I();
292 } else {
293 if (!srcToDstMatrix.invert(&tempMatrix)) {
294 return;
295 }
296 textureMatrix = &tempMatrix;
297 }
Brian Salomonf3569f02017-10-24 12:52:33 -0400298 auto fp = producer->createFragmentProcessor(
299 *textureMatrix, clippedSrcRect, constraintMode, coordsAllInsideSrcRect, filterMode,
300 fRenderTargetContext->colorSpaceInfo().colorSpace());
bsalomonc55271f2015-11-09 11:55:57 -0800301 if (!fp) {
302 return;
303 }
joshualitt33a5fce2015-11-18 13:28:51 -0800304
bsalomonc55271f2015-11-09 11:55:57 -0800305 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400306 if (!SkPaintToGrPaintWithTexture(fContext.get(), fRenderTargetContext->colorSpaceInfo(), paint,
307 viewMatrix, std::move(fp), producer->isAlphaOnly(),
308 &grPaint)) {
bsalomonc55271f2015-11-09 11:55:57 -0800309 return;
310 }
Chris Dalton3b51df12017-11-27 14:33:06 -0700311 GrAA aa = GrAA(paint.isAntiAlias());
bsalomonc55271f2015-11-09 11:55:57 -0800312 if (canUseTextureCoordsAsLocalCoords) {
Brian Salomon34169692017-08-28 15:32:01 -0400313 fRenderTargetContext->fillRectToRect(this->clip(), std::move(grPaint), aa, viewMatrix,
Brian Salomon82f44312017-01-11 13:42:54 -0500314 clippedDstRect, clippedSrcRect);
bsalomonc55271f2015-11-09 11:55:57 -0800315 return;
316 }
317
318 if (!mf) {
Brian Salomon34169692017-08-28 15:32:01 -0400319 fRenderTargetContext->drawRect(this->clip(), std::move(grPaint), aa, viewMatrix,
320 clippedDstRect);
bsalomonc55271f2015-11-09 11:55:57 -0800321 return;
322 }
323
Robert Phillips27927a52018-08-20 13:18:12 -0400324 GrShape shape(clippedDstRect, GrStyle::SimpleFill());
325
326 GrBlurUtils::drawShapeWithMaskFilter(this->context(), fRenderTargetContext.get(), this->clip(),
Robert Phillips793324c2018-08-24 13:53:56 -0400327 shape, std::move(grPaint), viewMatrix, mf);
bsalomonc55271f2015-11-09 11:55:57 -0800328}