blob: 107890e57a19488adcde955a71142146895ff1a7 [file] [log] [blame]
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -05001/*
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 "SkiaOpenGLReadback.h"
18
John Reck1bcacfd2017-11-03 10:12:19 -070019#include <GLES2/gl2.h>
20#include <GLES2/gl2ext.h>
21#include <GrBackendSurface.h>
22#include <SkCanvas.h>
23#include <SkSurface.h>
24#include <gl/GrGLInterface.h>
25#include <gl/GrGLTypes.h>
Derek Sollenberger4170db32017-08-09 13:52:36 -040026#include "DeviceInfo.h"
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050027#include "Matrix.h"
28#include "Properties.h"
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050029
30using namespace android::uirenderer::renderthread;
31
32namespace android {
33namespace uirenderer {
34namespace skiapipeline {
35
36CopyResult SkiaOpenGLReadback::copyImageInto(EGLImageKHR eglImage, const Matrix4& imgTransform,
John Reck1bcacfd2017-11-03 10:12:19 -070037 int imgWidth, int imgHeight, const Rect& srcRect,
38 SkBitmap* bitmap) {
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050039 GLuint sourceTexId;
40 glGenTextures(1, &sourceTexId);
41 glBindTexture(GL_TEXTURE_EXTERNAL_OES, sourceTexId);
42 glEGLImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, eglImage);
43
44 sk_sp<GrContext> grContext = sk_ref_sp(mRenderThread.getGrContext());
45 if (Properties::getRenderPipelineType() == RenderPipelineType::SkiaVulkan) {
46 sk_sp<const GrGLInterface> glInterface(GrGLCreateNativeInterface());
47 LOG_ALWAYS_FATAL_IF(!glInterface.get());
Greg Daniel660d6ec2017-12-08 11:44:27 -050048 grContext = GrContext::MakeGL(std::move(glInterface));
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050049 } else {
50 grContext->resetContext();
51 }
52
53 GrGLTextureInfo externalTexture;
54 externalTexture.fTarget = GL_TEXTURE_EXTERNAL_OES;
55 externalTexture.fID = sourceTexId;
56
Stan Iliev08fc19a2017-07-24 10:20:33 -040057 GrPixelConfig pixelConfig;
58 switch (bitmap->colorType()) {
John Reck1bcacfd2017-11-03 10:12:19 -070059 case kRGBA_F16_SkColorType:
60 pixelConfig = kRGBA_half_GrPixelConfig;
61 break;
62 case kN32_SkColorType:
63 default:
64 pixelConfig = kRGBA_8888_GrPixelConfig;
65 break;
Stan Iliev08fc19a2017-07-24 10:20:33 -040066 }
67
Derek Sollenberger4170db32017-08-09 13:52:36 -040068 if (pixelConfig == kRGBA_half_GrPixelConfig &&
Stan Ilievf1f3c382017-11-09 12:17:35 -050069 !grContext->caps()->isConfigRenderable(kRGBA_half_GrPixelConfig, false)) {
Derek Sollenberger4170db32017-08-09 13:52:36 -040070 ALOGW("Can't copy surface into bitmap, RGBA_F16 config is not supported");
71 return CopyResult::DestinationInvalid;
72 }
73
Stan Iliev08fc19a2017-07-24 10:20:33 -040074 GrBackendTexture backendTexture(imgWidth, imgHeight, pixelConfig, externalTexture);
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050075
76 CopyResult copyResult = CopyResult::UnknownError;
Greg Danielac2d2322017-07-12 11:30:15 -040077 sk_sp<SkImage> image(SkImage::MakeFromAdoptedTexture(grContext.get(), backendTexture,
John Reck1bcacfd2017-11-03 10:12:19 -070078 kTopLeft_GrSurfaceOrigin));
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050079 if (image) {
Stan Ilievcf917882017-10-27 19:29:44 -040080 int displayedWidth = imgWidth, displayedHeight = imgHeight;
81 // If this is a 90 or 270 degree rotation we need to swap width/height to get the device
82 // size.
83 if (imgTransform[Matrix4::kSkewX] >= 0.5f || imgTransform[Matrix4::kSkewX] <= -0.5f) {
84 std::swap(displayedWidth, displayedHeight);
Stan Iliev1220a2a2017-07-19 18:09:25 -040085 }
Stan Ilievdf6520e2017-07-17 18:50:16 -040086 SkRect skiaDestRect = SkRect::MakeWH(bitmap->width(), bitmap->height());
Stan Ilievcf917882017-10-27 19:29:44 -040087 SkRect skiaSrcRect = srcRect.toSkRect();
88 if (skiaSrcRect.isEmpty()) {
89 skiaSrcRect = SkRect::MakeIWH(displayedWidth, displayedHeight);
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050090 }
Stan Ilievcf917882017-10-27 19:29:44 -040091 bool srcNotEmpty = skiaSrcRect.intersect(SkRect::MakeIWH(displayedWidth, displayedHeight));
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050092
Stan Ilievdf6520e2017-07-17 18:50:16 -040093 if (srcNotEmpty) {
Stan Ilievcf917882017-10-27 19:29:44 -040094 SkMatrix textureMatrixInv;
95 imgTransform.copyTo(textureMatrixInv);
John Reck1bcacfd2017-11-03 10:12:19 -070096 // TODO: after skia bug https://bugs.chromium.org/p/skia/issues/detail?id=7075 is fixed
Stan Ilievcf917882017-10-27 19:29:44 -040097 // use bottom left origin and remove flipV and invert transformations.
98 SkMatrix flipV;
99 flipV.setAll(1, 0, 0, 0, -1, 1, 0, 0, 1);
100 textureMatrixInv.preConcat(flipV);
John Reck1bcacfd2017-11-03 10:12:19 -0700101 textureMatrixInv.preScale(1.0f / displayedWidth, 1.0f / displayedHeight);
Stan Ilievcf917882017-10-27 19:29:44 -0400102 textureMatrixInv.postScale(imgWidth, imgHeight);
103 SkMatrix textureMatrix;
104 if (!textureMatrixInv.invert(&textureMatrix)) {
105 textureMatrix = textureMatrixInv;
106 }
107
108 textureMatrixInv.mapRect(&skiaSrcRect);
109 textureMatrixInv.mapRect(&skiaDestRect);
110
Stan Iliev7bc3bc62017-05-24 13:28:36 -0400111 // we render in an offscreen buffer to scale and to avoid an issue b/62262733
112 // with reading incorrect data from EGLImage backed SkImage (likely a driver bug)
John Reck1bcacfd2017-11-03 10:12:19 -0700113 sk_sp<SkSurface> scaledSurface =
114 SkSurface::MakeRenderTarget(grContext.get(), SkBudgeted::kYes, bitmap->info());
Stan Iliev7bc3bc62017-05-24 13:28:36 -0400115 SkPaint paint;
116 paint.setBlendMode(SkBlendMode::kSrc);
Stan Ilievcf917882017-10-27 19:29:44 -0400117 // Apply a filter, which is matching OpenGL pipeline readback behaviour. Filter usage
118 // is codified by tests using golden images like DecodeAccuracyTest.
John Reck1bcacfd2017-11-03 10:12:19 -0700119 if (skiaSrcRect.width() != bitmap->width() ||
120 skiaSrcRect.height() != bitmap->height()) {
121 // TODO: apply filter always, but check if tests will be fine
Stan Ilievcf917882017-10-27 19:29:44 -0400122 paint.setFilterQuality(kLow_SkFilterQuality);
123 }
Stan Ilievdf6520e2017-07-17 18:50:16 -0400124 scaledSurface->getCanvas()->concat(textureMatrix);
Derek Sollenberger6c2a9e22017-08-15 16:23:01 -0400125 scaledSurface->getCanvas()->drawImageRect(image, skiaSrcRect, skiaDestRect, &paint,
John Reck1bcacfd2017-11-03 10:12:19 -0700126 SkCanvas::kFast_SrcRectConstraint);
Stan Ilievdf6520e2017-07-17 18:50:16 -0400127
Stan Iliev7bc3bc62017-05-24 13:28:36 -0400128 image = scaledSurface->makeImageSnapshot();
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500129
Stan Iliev7bc3bc62017-05-24 13:28:36 -0400130 if (image->readPixels(bitmap->info(), bitmap->getPixels(), bitmap->rowBytes(), 0, 0)) {
John Reckabbedfc2017-07-06 15:27:23 -0700131 bitmap->notifyPixelsChanged();
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500132 copyResult = CopyResult::Success;
133 }
134 }
135 }
136
137 // make sure that we have deleted the texture (in the SkImage) before we
138 // destroy the EGLImage that it was created from
139 image.reset();
140 return copyResult;
141}
142
143} /* namespace skiapipeline */
144} /* namespace uirenderer */
145} /* namespace android */