blob: 6e7511da07ffcf063b3bb9879369b284594b5353 [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 Reck1bcacfd2017-11-03 10:12:19 -070018#include "GlLayer.h"
Greg Daniel45ec62b2017-01-04 14:27:00 -050019#include "VkLayer.h"
20
Greg Danielac2d2322017-07-12 11:30:15 -040021#include "GrBackendSurface.h"
Derek Sollenbergerf87da672016-11-02 11:34:27 -040022#include "SkColorFilter.h"
Greg Daniel45ec62b2017-01-04 14:27:00 -050023#include "SkSurface.h"
Stan Iliev021693b2016-10-17 16:26:15 -040024#include "gl/GrGLTypes.h"
25
26namespace android {
27namespace uirenderer {
28namespace skiapipeline {
29
30void LayerDrawable::onDraw(SkCanvas* canvas) {
Derek Sollenbergerf5a370e2017-06-15 13:50:08 -040031 Layer* layer = mLayerUpdater->backingLayer();
32 if (layer) {
33 DrawLayer(canvas->getGrContext(), canvas, layer);
34 }
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050035}
36
Leon Scroggins III1a12ab22018-03-26 15:00:49 -040037bool LayerDrawable::DrawLayer(GrContext* context, SkCanvas* canvas, Layer* layer,
38 const SkRect* dstRect) {
Stan Ilieve9d00122017-09-19 12:07:10 -040039 if (context == nullptr) {
40 SkDEBUGF(("Attempting to draw LayerDrawable into an unsupported surface"));
41 return false;
42 }
Stan Iliev021693b2016-10-17 16:26:15 -040043 // transform the matrix based on the layer
Stan Iliev944dbf22017-09-27 11:05:29 -040044 SkMatrix layerTransform;
45 layer->getTransform().copyTo(layerTransform);
Greg Daniel45ec62b2017-01-04 14:27:00 -050046 sk_sp<SkImage> layerImage;
Leon Scroggins III1a12ab22018-03-26 15:00:49 -040047 const int layerWidth = layer->getWidth();
48 const int layerHeight = layer->getHeight();
Greg Daniel45ec62b2017-01-04 14:27:00 -050049 if (layer->getApi() == Layer::Api::OpenGL) {
50 GlLayer* glLayer = static_cast<GlLayer*>(layer);
51 GrGLTextureInfo externalTexture;
52 externalTexture.fTarget = glLayer->getRenderTarget();
53 externalTexture.fID = glLayer->getTextureId();
Derek Sollenberger551d08e2018-04-20 16:13:31 -040054 // The format may not be GL_RGBA8, but given the DeferredLayerUpdater and GLConsumer don't
55 // expose that info we use it as our default. Further, given that we only use this texture
56 // as a source this will not impact how Skia uses the texture. The only potential affect
57 // this is anticipated to have is that for some format types if we are not bound as an OES
58 // texture we may get invalid results for SKP capture if we read back the texture.
59 externalTexture.fFormat = GL_RGBA8;
60 GrBackendTexture backendTexture(layerWidth, layerHeight, GrMipMapped::kNo, externalTexture);
Greg Danielac2d2322017-07-12 11:30:15 -040061 layerImage = SkImage::MakeFromTexture(context, backendTexture, kTopLeft_GrSurfaceOrigin,
John Reck1bcacfd2017-11-03 10:12:19 -070062 kPremul_SkAlphaType, nullptr);
Greg Daniel45ec62b2017-01-04 14:27:00 -050063 } else {
64 SkASSERT(layer->getApi() == Layer::Api::Vulkan);
65 VkLayer* vkLayer = static_cast<VkLayer*>(layer);
66 canvas->clear(SK_ColorGREEN);
67 layerImage = vkLayer->getImage();
68 }
69
Stan Iliev021693b2016-10-17 16:26:15 -040070 if (layerImage) {
Leon Scroggins III1a12ab22018-03-26 15:00:49 -040071 SkMatrix textureMatrixInv;
72 layer->getTexTransform().copyTo(textureMatrixInv);
John Reck1bcacfd2017-11-03 10:12:19 -070073 // TODO: after skia bug https://bugs.chromium.org/p/skia/issues/detail?id=7075 is fixed
Stan Iliev944dbf22017-09-27 11:05:29 -040074 // use bottom left origin and remove flipV and invert transformations.
75 SkMatrix flipV;
76 flipV.setAll(1, 0, 0, 0, -1, 1, 0, 0, 1);
Leon Scroggins III1a12ab22018-03-26 15:00:49 -040077 textureMatrixInv.preConcat(flipV);
78 textureMatrixInv.preScale(1.0f / layerWidth, 1.0f / layerHeight);
79 textureMatrixInv.postScale(layerWidth, layerHeight);
80 SkMatrix textureMatrix;
81 if (!textureMatrixInv.invert(&textureMatrix)) {
82 textureMatrix = textureMatrixInv;
Stan Iliev944dbf22017-09-27 11:05:29 -040083 }
84
Stan Iliev421449a2018-07-12 16:53:59 -040085 SkMatrix matrix;
86 if (dstRect) {
87 // Destination rectangle is set only when we are trying to read back the content
88 // of the layer. In this case we don't want to apply layer transform.
89 matrix = textureMatrix;
90 } else {
91 matrix = SkMatrix::Concat(layerTransform, textureMatrix);
92 }
Stan Iliev944dbf22017-09-27 11:05:29 -040093
Stan Iliev021693b2016-10-17 16:26:15 -040094 SkPaint paint;
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050095 paint.setAlpha(layer->getAlpha());
96 paint.setBlendMode(layer->getMode());
Derek Sollenberger551d08e2018-04-20 16:13:31 -040097 paint.setColorFilter(layer->getColorSpaceWithFilter());
Stan Ilieva73b0be2017-10-06 10:16:58 -040098
99 const bool nonIdentityMatrix = !matrix.isIdentity();
100 if (nonIdentityMatrix) {
101 canvas->save();
102 canvas->concat(matrix);
103 }
Leon Scroggins III1a12ab22018-03-26 15:00:49 -0400104 if (dstRect) {
105 SkMatrix matrixInv;
106 if (!matrix.invert(&matrixInv)) {
107 matrixInv = matrix;
108 }
109 SkRect srcRect = SkRect::MakeIWH(layerWidth, layerHeight);
110 matrixInv.mapRect(&srcRect);
111 SkRect skiaDestRect = *dstRect;
112 matrixInv.mapRect(&skiaDestRect);
113 canvas->drawImageRect(layerImage.get(), srcRect, skiaDestRect, &paint,
114 SkCanvas::kFast_SrcRectConstraint);
115 } else {
116 canvas->drawImage(layerImage.get(), 0, 0, &paint);
117 }
Stan Ilieva73b0be2017-10-06 10:16:58 -0400118 // restore the original matrix
119 if (nonIdentityMatrix) {
120 canvas->restore();
121 }
Stan Iliev021693b2016-10-17 16:26:15 -0400122 }
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500123
124 return layerImage;
Stan Iliev021693b2016-10-17 16:26:15 -0400125}
126
John Reck1bcacfd2017-11-03 10:12:19 -0700127}; // namespace skiapipeline
128}; // namespace uirenderer
129}; // namespace android