blob: 96b17e1d79758413a2dd0aa16fd6b6179a5e0666 [file] [log] [blame]
Stan Iliev021693b2016-10-17 16:26:15 -04001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "LayerDrawable.h"
John Reck283bb462018-12-13 16:40:14 -080018#include <utils/MathUtils.h>
Greg Daniel45ec62b2017-01-04 14:27:00 -050019
Greg Danielac2d2322017-07-12 11:30:15 -040020#include "GrBackendSurface.h"
Derek Sollenbergerf87da672016-11-02 11:34:27 -040021#include "SkColorFilter.h"
Greg Daniel45ec62b2017-01-04 14:27:00 -050022#include "SkSurface.h"
Stan Iliev021693b2016-10-17 16:26:15 -040023#include "gl/GrGLTypes.h"
24
25namespace android {
26namespace uirenderer {
27namespace skiapipeline {
28
29void LayerDrawable::onDraw(SkCanvas* canvas) {
Derek Sollenbergerf5a370e2017-06-15 13:50:08 -040030 Layer* layer = mLayerUpdater->backingLayer();
31 if (layer) {
Stan Iliev1a025a72018-09-05 16:35:11 -040032 DrawLayer(canvas->getGrContext(), canvas, layer, nullptr, nullptr, true);
Derek Sollenbergerf5a370e2017-06-15 13:50:08 -040033 }
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050034}
35
Stan Iliev134372d2019-07-10 16:46:09 -040036// Disable filtering when there is no scaling in screen coordinates and the corners have the same
37// fraction (for translate) or zero fraction (for any other rect-to-rect transform).
38static bool shouldFilterRect(const SkMatrix& matrix, const SkRect& srcRect, const SkRect& dstRect) {
39 if (!matrix.rectStaysRect()) return true;
40 SkRect dstDevRect = matrix.mapRect(dstRect);
41 float dstW, dstH;
42 bool requiresIntegerTranslate = false;
43 if (MathUtils::isZero(matrix.getScaleX()) && MathUtils::isZero(matrix.getScaleY())) {
44 // Has a 90 or 270 degree rotation, although total matrix may also have scale factors
45 // in m10 and m01. Those scalings are automatically handled by mapRect so comparing
46 // dimensions is sufficient, but swap width and height comparison.
47 dstW = dstDevRect.height();
48 dstH = dstDevRect.width();
49 requiresIntegerTranslate = true;
50 } else {
51 // Handle H/V flips or 180 rotation matrices. Axes may have been mirrored, but
52 // dimensions are still safe to compare directly.
53 dstW = dstDevRect.width();
54 dstH = dstDevRect.height();
55 requiresIntegerTranslate =
56 matrix.getScaleX() < -NON_ZERO_EPSILON || matrix.getScaleY() < -NON_ZERO_EPSILON;
57 }
58 if (!(MathUtils::areEqual(dstW, srcRect.width()) &&
59 MathUtils::areEqual(dstH, srcRect.height()))) {
60 return true;
61 }
62 if (requiresIntegerTranslate) {
63 // Device rect and source rect should be integer aligned to ensure there's no difference
64 // in how nearest-neighbor sampling is resolved.
65 return !(MathUtils::isZero(SkScalarFraction(srcRect.x())) &&
66 MathUtils::isZero(SkScalarFraction(srcRect.y())) &&
67 MathUtils::isZero(SkScalarFraction(dstDevRect.x())) &&
68 MathUtils::isZero(SkScalarFraction(dstDevRect.y())));
69 } else {
70 // As long as src and device rects are translated by the same fractional amount,
71 // filtering won't be needed
72 return !(MathUtils::areEqual(SkScalarFraction(srcRect.x()),
73 SkScalarFraction(dstDevRect.x())) &&
74 MathUtils::areEqual(SkScalarFraction(srcRect.y()),
75 SkScalarFraction(dstDevRect.y())));
76 }
John Reck0aff62d2018-11-26 16:41:34 -080077}
78
Leon Scroggins III1a12ab22018-03-26 15:00:49 -040079bool LayerDrawable::DrawLayer(GrContext* context, SkCanvas* canvas, Layer* layer,
Stan Iliev1a025a72018-09-05 16:35:11 -040080 const SkRect* srcRect, const SkRect* dstRect,
81 bool useLayerTransform) {
Stan Ilieve9d00122017-09-19 12:07:10 -040082 if (context == nullptr) {
83 SkDEBUGF(("Attempting to draw LayerDrawable into an unsupported surface"));
84 return false;
85 }
Stan Iliev021693b2016-10-17 16:26:15 -040086 // transform the matrix based on the layer
Stan Iliev564ca3e2018-09-04 22:00:00 +000087 SkMatrix layerTransform = layer->getTransform();
88 sk_sp<SkImage> layerImage = layer->getImage();
Leon Scroggins III1a12ab22018-03-26 15:00:49 -040089 const int layerWidth = layer->getWidth();
90 const int layerHeight = layer->getHeight();
Greg Daniel45ec62b2017-01-04 14:27:00 -050091
Stan Iliev021693b2016-10-17 16:26:15 -040092 if (layerImage) {
Leon Scroggins III1a12ab22018-03-26 15:00:49 -040093 SkMatrix textureMatrixInv;
Stan Iliev564ca3e2018-09-04 22:00:00 +000094 textureMatrixInv = layer->getTexTransform();
John Reck1bcacfd2017-11-03 10:12:19 -070095 // TODO: after skia bug https://bugs.chromium.org/p/skia/issues/detail?id=7075 is fixed
Stan Iliev944dbf22017-09-27 11:05:29 -040096 // use bottom left origin and remove flipV and invert transformations.
97 SkMatrix flipV;
98 flipV.setAll(1, 0, 0, 0, -1, 1, 0, 0, 1);
Leon Scroggins III1a12ab22018-03-26 15:00:49 -040099 textureMatrixInv.preConcat(flipV);
100 textureMatrixInv.preScale(1.0f / layerWidth, 1.0f / layerHeight);
Stan Iliev564ca3e2018-09-04 22:00:00 +0000101 textureMatrixInv.postScale(layerImage->width(), layerImage->height());
Leon Scroggins III1a12ab22018-03-26 15:00:49 -0400102 SkMatrix textureMatrix;
103 if (!textureMatrixInv.invert(&textureMatrix)) {
104 textureMatrix = textureMatrixInv;
Stan Iliev944dbf22017-09-27 11:05:29 -0400105 }
106
Stan Ilievaac878f2018-07-12 16:53:59 -0400107 SkMatrix matrix;
Stan Iliev1a025a72018-09-05 16:35:11 -0400108 if (useLayerTransform) {
Stan Ilievaac878f2018-07-12 16:53:59 -0400109 matrix = SkMatrix::Concat(layerTransform, textureMatrix);
Stan Iliev1a025a72018-09-05 16:35:11 -0400110 } else {
111 matrix = textureMatrix;
Stan Ilievaac878f2018-07-12 16:53:59 -0400112 }
Stan Iliev944dbf22017-09-27 11:05:29 -0400113
Stan Iliev021693b2016-10-17 16:26:15 -0400114 SkPaint paint;
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500115 paint.setAlpha(layer->getAlpha());
116 paint.setBlendMode(layer->getMode());
Derek Sollenbergerd01b5912018-10-19 15:55:33 -0400117 paint.setColorFilter(layer->getColorFilter());
Stan Ilieva73b0be2017-10-06 10:16:58 -0400118 const bool nonIdentityMatrix = !matrix.isIdentity();
119 if (nonIdentityMatrix) {
120 canvas->save();
121 canvas->concat(matrix);
122 }
Stan Ilievaa0a3312018-10-19 15:26:08 -0400123 const SkMatrix& totalMatrix = canvas->getTotalMatrix();
Stan Iliev1a025a72018-09-05 16:35:11 -0400124 if (dstRect || srcRect) {
Leon Scroggins III1a12ab22018-03-26 15:00:49 -0400125 SkMatrix matrixInv;
126 if (!matrix.invert(&matrixInv)) {
127 matrixInv = matrix;
128 }
Stan Iliev1a025a72018-09-05 16:35:11 -0400129 SkRect skiaSrcRect;
130 if (srcRect) {
131 skiaSrcRect = *srcRect;
132 } else {
133 skiaSrcRect = SkRect::MakeIWH(layerWidth, layerHeight);
134 }
135 matrixInv.mapRect(&skiaSrcRect);
136 SkRect skiaDestRect;
137 if (dstRect) {
138 skiaDestRect = *dstRect;
139 } else {
140 skiaDestRect = SkRect::MakeIWH(layerWidth, layerHeight);
141 }
Leon Scroggins III1a12ab22018-03-26 15:00:49 -0400142 matrixInv.mapRect(&skiaDestRect);
Stan Iliev134372d2019-07-10 16:46:09 -0400143 // If (matrix is a rect-to-rect transform)
144 // and (src/dst buffers size match in screen coordinates)
145 // and (src/dst corners align fractionally),
Stan Ilievaa0a3312018-10-19 15:26:08 -0400146 // then use nearest neighbor, otherwise use bilerp sampling.
Stan Ilievaa0a3312018-10-19 15:26:08 -0400147 // Skia TextureOp has the above logic build-in, but not NonAAFillRectOp. TextureOp works
148 // only for SrcOver blending and without color filter (readback uses Src blending).
Stan Iliev134372d2019-07-10 16:46:09 -0400149 if (layer->getForceFilter() ||
150 shouldFilterRect(totalMatrix, skiaSrcRect, skiaDestRect)) {
Stan Ilievaa0a3312018-10-19 15:26:08 -0400151 paint.setFilterQuality(kLow_SkFilterQuality);
152 }
Stan Iliev1a025a72018-09-05 16:35:11 -0400153 canvas->drawImageRect(layerImage.get(), skiaSrcRect, skiaDestRect, &paint,
Leon Scroggins III1a12ab22018-03-26 15:00:49 -0400154 SkCanvas::kFast_SrcRectConstraint);
155 } else {
Stan Iliev134372d2019-07-10 16:46:09 -0400156 SkRect imageRect = SkRect::MakeIWH(layerImage->width(), layerImage->height());
157 if (layer->getForceFilter() || shouldFilterRect(totalMatrix, imageRect, imageRect)) {
Stan Ilievaa0a3312018-10-19 15:26:08 -0400158 paint.setFilterQuality(kLow_SkFilterQuality);
159 }
Leon Scroggins III1a12ab22018-03-26 15:00:49 -0400160 canvas->drawImage(layerImage.get(), 0, 0, &paint);
161 }
Stan Ilieva73b0be2017-10-06 10:16:58 -0400162 // restore the original matrix
163 if (nonIdentityMatrix) {
164 canvas->restore();
165 }
Stan Iliev021693b2016-10-17 16:26:15 -0400166 }
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500167
Ben Wagner6b62ac02018-05-29 14:16:02 -0400168 return layerImage != nullptr;
Stan Iliev021693b2016-10-17 16:26:15 -0400169}
170
Chris Blume7b8a8082018-11-30 15:51:58 -0800171} // namespace skiapipeline
172} // namespace uirenderer
173} // namespace android