Stan Iliev | 021693b | 2016-10-17 16:26:15 -0400 | [diff] [blame] | 1 | /* |
| 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 Reck | 283bb46 | 2018-12-13 16:40:14 -0800 | [diff] [blame] | 18 | #include <utils/MathUtils.h> |
Greg Daniel | 45ec62b | 2017-01-04 14:27:00 -0500 | [diff] [blame] | 19 | |
Greg Daniel | ac2d232 | 2017-07-12 11:30:15 -0400 | [diff] [blame] | 20 | #include "GrBackendSurface.h" |
Derek Sollenberger | f87da67 | 2016-11-02 11:34:27 -0400 | [diff] [blame] | 21 | #include "SkColorFilter.h" |
Greg Daniel | 45ec62b | 2017-01-04 14:27:00 -0500 | [diff] [blame] | 22 | #include "SkSurface.h" |
Stan Iliev | 021693b | 2016-10-17 16:26:15 -0400 | [diff] [blame] | 23 | #include "gl/GrGLTypes.h" |
| 24 | |
| 25 | namespace android { |
| 26 | namespace uirenderer { |
| 27 | namespace skiapipeline { |
| 28 | |
| 29 | void LayerDrawable::onDraw(SkCanvas* canvas) { |
Derek Sollenberger | f5a370e | 2017-06-15 13:50:08 -0400 | [diff] [blame] | 30 | Layer* layer = mLayerUpdater->backingLayer(); |
| 31 | if (layer) { |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 32 | DrawLayer(canvas->getGrContext(), canvas, layer, nullptr, nullptr, true); |
Derek Sollenberger | f5a370e | 2017-06-15 13:50:08 -0400 | [diff] [blame] | 33 | } |
Derek Sollenberger | c4fbada | 2016-11-07 16:05:41 -0500 | [diff] [blame] | 34 | } |
| 35 | |
Stan Iliev | 134372d | 2019-07-10 16:46:09 -0400 | [diff] [blame^] | 36 | // 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). |
| 38 | static 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 Reck | 0aff62d | 2018-11-26 16:41:34 -0800 | [diff] [blame] | 77 | } |
| 78 | |
Leon Scroggins III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 79 | bool LayerDrawable::DrawLayer(GrContext* context, SkCanvas* canvas, Layer* layer, |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 80 | const SkRect* srcRect, const SkRect* dstRect, |
| 81 | bool useLayerTransform) { |
Stan Iliev | e9d0012 | 2017-09-19 12:07:10 -0400 | [diff] [blame] | 82 | if (context == nullptr) { |
| 83 | SkDEBUGF(("Attempting to draw LayerDrawable into an unsupported surface")); |
| 84 | return false; |
| 85 | } |
Stan Iliev | 021693b | 2016-10-17 16:26:15 -0400 | [diff] [blame] | 86 | // transform the matrix based on the layer |
Stan Iliev | 564ca3e | 2018-09-04 22:00:00 +0000 | [diff] [blame] | 87 | SkMatrix layerTransform = layer->getTransform(); |
| 88 | sk_sp<SkImage> layerImage = layer->getImage(); |
Leon Scroggins III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 89 | const int layerWidth = layer->getWidth(); |
| 90 | const int layerHeight = layer->getHeight(); |
Greg Daniel | 45ec62b | 2017-01-04 14:27:00 -0500 | [diff] [blame] | 91 | |
Stan Iliev | 021693b | 2016-10-17 16:26:15 -0400 | [diff] [blame] | 92 | if (layerImage) { |
Leon Scroggins III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 93 | SkMatrix textureMatrixInv; |
Stan Iliev | 564ca3e | 2018-09-04 22:00:00 +0000 | [diff] [blame] | 94 | textureMatrixInv = layer->getTexTransform(); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 95 | // TODO: after skia bug https://bugs.chromium.org/p/skia/issues/detail?id=7075 is fixed |
Stan Iliev | 944dbf2 | 2017-09-27 11:05:29 -0400 | [diff] [blame] | 96 | // 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 III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 99 | textureMatrixInv.preConcat(flipV); |
| 100 | textureMatrixInv.preScale(1.0f / layerWidth, 1.0f / layerHeight); |
Stan Iliev | 564ca3e | 2018-09-04 22:00:00 +0000 | [diff] [blame] | 101 | textureMatrixInv.postScale(layerImage->width(), layerImage->height()); |
Leon Scroggins III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 102 | SkMatrix textureMatrix; |
| 103 | if (!textureMatrixInv.invert(&textureMatrix)) { |
| 104 | textureMatrix = textureMatrixInv; |
Stan Iliev | 944dbf2 | 2017-09-27 11:05:29 -0400 | [diff] [blame] | 105 | } |
| 106 | |
Stan Iliev | aac878f | 2018-07-12 16:53:59 -0400 | [diff] [blame] | 107 | SkMatrix matrix; |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 108 | if (useLayerTransform) { |
Stan Iliev | aac878f | 2018-07-12 16:53:59 -0400 | [diff] [blame] | 109 | matrix = SkMatrix::Concat(layerTransform, textureMatrix); |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 110 | } else { |
| 111 | matrix = textureMatrix; |
Stan Iliev | aac878f | 2018-07-12 16:53:59 -0400 | [diff] [blame] | 112 | } |
Stan Iliev | 944dbf2 | 2017-09-27 11:05:29 -0400 | [diff] [blame] | 113 | |
Stan Iliev | 021693b | 2016-10-17 16:26:15 -0400 | [diff] [blame] | 114 | SkPaint paint; |
Derek Sollenberger | c4fbada | 2016-11-07 16:05:41 -0500 | [diff] [blame] | 115 | paint.setAlpha(layer->getAlpha()); |
| 116 | paint.setBlendMode(layer->getMode()); |
Derek Sollenberger | d01b591 | 2018-10-19 15:55:33 -0400 | [diff] [blame] | 117 | paint.setColorFilter(layer->getColorFilter()); |
Stan Iliev | a73b0be | 2017-10-06 10:16:58 -0400 | [diff] [blame] | 118 | const bool nonIdentityMatrix = !matrix.isIdentity(); |
| 119 | if (nonIdentityMatrix) { |
| 120 | canvas->save(); |
| 121 | canvas->concat(matrix); |
| 122 | } |
Stan Iliev | aa0a331 | 2018-10-19 15:26:08 -0400 | [diff] [blame] | 123 | const SkMatrix& totalMatrix = canvas->getTotalMatrix(); |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 124 | if (dstRect || srcRect) { |
Leon Scroggins III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 125 | SkMatrix matrixInv; |
| 126 | if (!matrix.invert(&matrixInv)) { |
| 127 | matrixInv = matrix; |
| 128 | } |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 129 | 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 III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 142 | matrixInv.mapRect(&skiaDestRect); |
Stan Iliev | 134372d | 2019-07-10 16:46:09 -0400 | [diff] [blame^] | 143 | // 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 Iliev | aa0a331 | 2018-10-19 15:26:08 -0400 | [diff] [blame] | 146 | // then use nearest neighbor, otherwise use bilerp sampling. |
Stan Iliev | aa0a331 | 2018-10-19 15:26:08 -0400 | [diff] [blame] | 147 | // 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 Iliev | 134372d | 2019-07-10 16:46:09 -0400 | [diff] [blame^] | 149 | if (layer->getForceFilter() || |
| 150 | shouldFilterRect(totalMatrix, skiaSrcRect, skiaDestRect)) { |
Stan Iliev | aa0a331 | 2018-10-19 15:26:08 -0400 | [diff] [blame] | 151 | paint.setFilterQuality(kLow_SkFilterQuality); |
| 152 | } |
Stan Iliev | 1a025a7 | 2018-09-05 16:35:11 -0400 | [diff] [blame] | 153 | canvas->drawImageRect(layerImage.get(), skiaSrcRect, skiaDestRect, &paint, |
Leon Scroggins III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 154 | SkCanvas::kFast_SrcRectConstraint); |
| 155 | } else { |
Stan Iliev | 134372d | 2019-07-10 16:46:09 -0400 | [diff] [blame^] | 156 | SkRect imageRect = SkRect::MakeIWH(layerImage->width(), layerImage->height()); |
| 157 | if (layer->getForceFilter() || shouldFilterRect(totalMatrix, imageRect, imageRect)) { |
Stan Iliev | aa0a331 | 2018-10-19 15:26:08 -0400 | [diff] [blame] | 158 | paint.setFilterQuality(kLow_SkFilterQuality); |
| 159 | } |
Leon Scroggins III | 1a12ab2 | 2018-03-26 15:00:49 -0400 | [diff] [blame] | 160 | canvas->drawImage(layerImage.get(), 0, 0, &paint); |
| 161 | } |
Stan Iliev | a73b0be | 2017-10-06 10:16:58 -0400 | [diff] [blame] | 162 | // restore the original matrix |
| 163 | if (nonIdentityMatrix) { |
| 164 | canvas->restore(); |
| 165 | } |
Stan Iliev | 021693b | 2016-10-17 16:26:15 -0400 | [diff] [blame] | 166 | } |
Derek Sollenberger | c4fbada | 2016-11-07 16:05:41 -0500 | [diff] [blame] | 167 | |
Ben Wagner | 6b62ac0 | 2018-05-29 14:16:02 -0400 | [diff] [blame] | 168 | return layerImage != nullptr; |
Stan Iliev | 021693b | 2016-10-17 16:26:15 -0400 | [diff] [blame] | 169 | } |
| 170 | |
Chris Blume | 7b8a808 | 2018-11-30 15:51:58 -0800 | [diff] [blame] | 171 | } // namespace skiapipeline |
| 172 | } // namespace uirenderer |
| 173 | } // namespace android |