blob: 0798f1e012b87942c948262b9978694515c6d705 [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/**
90 * Checks whether the paint, matrix, and constraint are compatible with using
91 * GrRenderTargetContext::drawTextureAffine. It is more effecient than the GrTextureProducer
92 * general case.
93 */
Brian Salomon4e6cf912018-01-17 09:27:35 -050094static bool can_use_draw_texture_affine(const SkPaint& paint, GrAA aa, const SkMatrix& ctm,
Brian Salomon34169692017-08-28 15:32:01 -040095 SkCanvas::SrcRectConstraint constraint) {
Brian Salomon4e6cf912018-01-17 09:27:35 -050096// This is disabled in Chrome until crbug.com/802408 and crbug.com/801783 can be sorted out.
97#ifdef SK_DISABLE_TEXTURE_OP_AA
98 if (GrAA::kYes == aa) {
99 return false;
100 }
101#endif
Brian Salomon34169692017-08-28 15:32:01 -0400102 return (!paint.getColorFilter() && !paint.getShader() && !paint.getMaskFilter() &&
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500103 !paint.getImageFilter() && paint.getFilterQuality() < kMedium_SkFilterQuality &&
Brian Salomon34169692017-08-28 15:32:01 -0400104 paint.getBlendMode() == SkBlendMode::kSrcOver && !ctm.hasPerspective() &&
105 SkCanvas::kFast_SrcRectConstraint == constraint);
106}
107
108static void draw_texture_affine(const SkPaint& paint, const SkMatrix& ctm, const SkRect* src,
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500109 const SkRect* dst, GrAA aa, sk_sp<GrTextureProxy> proxy,
Brian Salomon34169692017-08-28 15:32:01 -0400110 SkColorSpace* colorSpace, const GrClip& clip,
111 GrRenderTargetContext* rtc) {
112 SkASSERT(!(SkToBool(src) && !SkToBool(dst)));
113 SkRect srcRect = src ? *src : SkRect::MakeWH(proxy->width(), proxy->height());
114 SkRect dstRect = dst ? *dst : srcRect;
115 if (src && !SkRect::MakeIWH(proxy->width(), proxy->height()).contains(srcRect)) {
116 // Shrink the src rect to be within bounds and proportionately shrink the dst rect.
117 SkMatrix srcToDst;
118 srcToDst.setRectToRect(srcRect, dstRect, SkMatrix::kFill_ScaleToFit);
119 SkAssertResult(srcRect.intersect(SkRect::MakeIWH(proxy->width(), proxy->height())));
120 srcToDst.mapRect(&dstRect, srcRect);
121 }
Brian Osmanf06ead92017-10-30 13:47:41 -0400122 auto csxf = GrColorSpaceXform::Make(colorSpace, proxy->config(),
123 rtc->colorSpaceInfo().colorSpace());
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400124 GrSamplerState::Filter filter;
Brian Salomon34169692017-08-28 15:32:01 -0400125 switch (paint.getFilterQuality()) {
126 case kNone_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400127 filter = GrSamplerState::Filter::kNearest;
Brian Salomon34169692017-08-28 15:32:01 -0400128 break;
129 case kLow_SkFilterQuality:
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400130 filter = GrSamplerState::Filter::kBilerp;
Brian Salomon34169692017-08-28 15:32:01 -0400131 break;
132 case kMedium_SkFilterQuality:
133 case kHigh_SkFilterQuality:
134 SK_ABORT("Quality level not allowed.");
135 }
136 GrColor color = GrPixelConfigIsAlphaOnly(proxy->config())
137 ? SkColorToPremulGrColor(paint.getColor())
138 : SkColorAlphaToGrColor(paint.getColor());
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500139 rtc->drawTextureAffine(clip, std::move(proxy), filter, color, srcRect, dstRect, aa, ctm,
Brian Salomon34169692017-08-28 15:32:01 -0400140 std::move(csxf));
141}
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());
151 if (can_use_draw_texture_affine(paint, aa, this->ctm(), constraint)) {
152 draw_texture_affine(paint, viewMatrix, srcRect, dstRect, aa, std::move(proxy), colorSpace,
153 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());
166 if (can_use_draw_texture_affine(paint, aa, viewMatrix, constraint)) {
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 Salomon4e6cf912018-01-17 09:27:35 -0500176 draw_texture_affine(paint, viewMatrix, srcRect, dstRect, aa, std::move(proxy), cs.get(),
177 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();
bsalomonc55271f2015-11-09 11:55:57 -0800251 // The shader expects proper local coords, so we can't replace local coords with texture coords
252 // if the shader will be used. If we have a mask filter we will change the underlying geometry
253 // that is rendered.
bsalomonf1ecd212015-12-09 17:06:02 -0800254 bool canUseTextureCoordsAsLocalCoords = !use_shader(producer->isAlphaOnly(), paint) && !mf;
bsalomonc55271f2015-11-09 11:55:57 -0800255
256 bool doBicubic;
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400257 GrSamplerState::Filter fm = GrSkFilterQualityToGrFilterMode(
258 paint.getFilterQuality(), viewMatrix, srcToDstMatrix, &doBicubic);
259 const GrSamplerState::Filter* filterMode = doBicubic ? nullptr : &fm;
bsalomonc55271f2015-11-09 11:55:57 -0800260
Brian Osmane8e54582016-11-28 10:06:27 -0500261 GrTextureProducer::FilterConstraint constraintMode;
bsalomonc55271f2015-11-09 11:55:57 -0800262 if (SkCanvas::kFast_SrcRectConstraint == constraint) {
263 constraintMode = GrTextureAdjuster::kNo_FilterConstraint;
264 } else {
265 constraintMode = GrTextureAdjuster::kYes_FilterConstraint;
266 }
halcanary9d524f22016-03-29 09:03:52 -0700267
bsalomonc55271f2015-11-09 11:55:57 -0800268 // If we have to outset for AA then we will generate texture coords outside the src rect. The
269 // same happens for any mask filter that extends the bounds rendered in the dst.
270 // This is conservative as a mask filter does not have to expand the bounds rendered.
271 bool coordsAllInsideSrcRect = !paint.isAntiAlias() && !mf;
272
bsalomonb1b01992015-11-18 10:56:08 -0800273 // Check for optimization to drop the src rect constraint when on bilerp.
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400274 if (filterMode && GrSamplerState::Filter::kBilerp == *filterMode &&
bsalomonb1b01992015-11-18 10:56:08 -0800275 GrTextureAdjuster::kYes_FilterConstraint == constraintMode && coordsAllInsideSrcRect) {
276 SkMatrix combinedMatrix;
277 combinedMatrix.setConcat(viewMatrix, srcToDstMatrix);
278 if (can_ignore_bilerp_constraint(*producer, clippedSrcRect, combinedMatrix,
Brian Salomon7c8460e2017-05-12 11:36:10 -0400279 fRenderTargetContext->fsaaType())) {
bsalomonb1b01992015-11-18 10:56:08 -0800280 constraintMode = GrTextureAdjuster::kNo_FilterConstraint;
281 }
282 }
283
bsalomon3aa5fce2015-11-12 09:59:44 -0800284 const SkMatrix* textureMatrix;
285 SkMatrix tempMatrix;
286 if (canUseTextureCoordsAsLocalCoords) {
287 textureMatrix = &SkMatrix::I();
288 } else {
289 if (!srcToDstMatrix.invert(&tempMatrix)) {
290 return;
291 }
292 textureMatrix = &tempMatrix;
293 }
Brian Salomonf3569f02017-10-24 12:52:33 -0400294 auto fp = producer->createFragmentProcessor(
295 *textureMatrix, clippedSrcRect, constraintMode, coordsAllInsideSrcRect, filterMode,
296 fRenderTargetContext->colorSpaceInfo().colorSpace());
bsalomonc55271f2015-11-09 11:55:57 -0800297 if (!fp) {
298 return;
299 }
joshualitt33a5fce2015-11-18 13:28:51 -0800300
bsalomonc55271f2015-11-09 11:55:57 -0800301 GrPaint grPaint;
Brian Salomonf3569f02017-10-24 12:52:33 -0400302 if (!SkPaintToGrPaintWithTexture(fContext.get(), fRenderTargetContext->colorSpaceInfo(), paint,
303 viewMatrix, std::move(fp), producer->isAlphaOnly(),
304 &grPaint)) {
bsalomonc55271f2015-11-09 11:55:57 -0800305 return;
306 }
Chris Dalton3b51df12017-11-27 14:33:06 -0700307 GrAA aa = GrAA(paint.isAntiAlias());
bsalomonc55271f2015-11-09 11:55:57 -0800308 if (canUseTextureCoordsAsLocalCoords) {
Brian Salomon34169692017-08-28 15:32:01 -0400309 fRenderTargetContext->fillRectToRect(this->clip(), std::move(grPaint), aa, viewMatrix,
Brian Salomon82f44312017-01-11 13:42:54 -0500310 clippedDstRect, clippedSrcRect);
bsalomonc55271f2015-11-09 11:55:57 -0800311 return;
312 }
313
314 if (!mf) {
Brian Salomon34169692017-08-28 15:32:01 -0400315 fRenderTargetContext->drawRect(this->clip(), std::move(grPaint), aa, viewMatrix,
316 clippedDstRect);
bsalomonc55271f2015-11-09 11:55:57 -0800317 return;
318 }
319
320 // First see if we can do the draw + mask filter direct to the dst.
robertphillips6cfb1062016-08-22 16:13:48 -0700321 if (viewMatrix.isScaleTranslate()) {
322 SkRect devClippedDstRect;
323 viewMatrix.mapRectScaleTranslate(&devClippedDstRect, clippedDstRect);
324
325 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle);
Mike Reed80747ef2018-01-23 15:29:32 -0500326 if (as_MFB(mf)->directFilterRRectMaskGPU(fContext.get(),
327 fRenderTargetContext.get(),
328 std::move(grPaint),
329 this->clip(),
330 viewMatrix,
331 rec,
332 SkRRect::MakeRect(clippedDstRect),
333 SkRRect::MakeRect(devClippedDstRect))) {
robertphillips6cfb1062016-08-22 16:13:48 -0700334 return;
335 }
bsalomonc55271f2015-11-09 11:55:57 -0800336 }
robertphillips6cfb1062016-08-22 16:13:48 -0700337
bsalomonc55271f2015-11-09 11:55:57 -0800338 SkPath rectPath;
339 rectPath.addRect(clippedDstRect);
robertphillips0e7029e2015-11-30 05:45:06 -0800340 rectPath.setIsVolatile(true);
Brian Salomon0166cfd2017-03-13 17:58:25 -0400341 GrBlurUtils::drawPathWithMaskFilter(this->context(), fRenderTargetContext.get(), this->clip(),
Brian Salomon82f44312017-01-11 13:42:54 -0500342 rectPath, std::move(grPaint), aa, viewMatrix, mf,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500343 GrStyle::SimpleFill(), true);
bsalomonc55271f2015-11-09 11:55:57 -0800344}