John Reck | 16c9d6a | 2015-11-17 15:51:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 "TestUtils.h" |
| 18 | |
Chris Craik | d2dfd8f | 2015-12-16 14:27:20 -0800 | [diff] [blame] | 19 | #include "DeferredLayerUpdater.h" |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 20 | #include "hwui/Paint.h" |
Chris Craik | d2dfd8f | 2015-12-16 14:27:20 -0800 | [diff] [blame] | 21 | |
Kevin Lubick | 09a7709 | 2023-10-31 14:58:26 +0000 | [diff] [blame] | 22 | #include <hwui/MinikinSkia.h> |
| 23 | #include <hwui/Typeface.h> |
Seigo Nonaka | 7c93e86 | 2017-10-25 16:34:48 -0700 | [diff] [blame] | 24 | #include <minikin/Layout.h> |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 25 | #include <pipeline/skia/SkiaOpenGLPipeline.h> |
| 26 | #include <pipeline/skia/SkiaVulkanPipeline.h> |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 27 | #include <renderthread/EglManager.h> |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 28 | #include <renderthread/VulkanManager.h> |
Ben Wagner | f4cf5d3 | 2016-02-22 15:25:35 -0500 | [diff] [blame] | 29 | #include <utils/Unicode.h> |
| 30 | |
Kevin Lubick | 1175dc0 | 2022-02-28 12:41:27 -0500 | [diff] [blame] | 31 | #include "SkCanvas.h" |
Mike Reed | 3ad4f8a | 2018-05-02 15:46:56 -0400 | [diff] [blame] | 32 | #include "SkColorData.h" |
Kevin Lubick | 1175dc0 | 2022-02-28 12:41:27 -0500 | [diff] [blame] | 33 | #include "SkMatrix.h" |
| 34 | #include "SkPath.h" |
| 35 | #include "SkPixmap.h" |
| 36 | #include "SkRect.h" |
| 37 | #include "SkSurface.h" |
Leon Scroggins III | 4f354e9 | 2018-05-11 13:19:37 -0400 | [diff] [blame] | 38 | #include "SkUnPreMultiply.h" |
Leon Scroggins III | ee708fa | 2016-12-12 15:31:39 -0500 | [diff] [blame] | 39 | |
John Reck | 16c9d6a | 2015-11-17 15:51:08 -0800 | [diff] [blame] | 40 | namespace android { |
| 41 | namespace uirenderer { |
| 42 | |
Alec Mouri | e579278 | 2024-07-18 03:59:51 +0000 | [diff] [blame] | 43 | std::mutex TestUtils::sMutex; |
John Reck | 283bb46 | 2018-12-13 16:40:14 -0800 | [diff] [blame] | 44 | std::unordered_map<int, TestUtils::CallCounts> TestUtils::sMockFunctorCounts{}; |
| 45 | |
John Reck | 16c9d6a | 2015-11-17 15:51:08 -0800 | [diff] [blame] | 46 | SkColor TestUtils::interpolateColor(float fraction, SkColor start, SkColor end) { |
| 47 | int startA = (start >> 24) & 0xff; |
| 48 | int startR = (start >> 16) & 0xff; |
| 49 | int startG = (start >> 8) & 0xff; |
| 50 | int startB = start & 0xff; |
| 51 | |
| 52 | int endA = (end >> 24) & 0xff; |
| 53 | int endR = (end >> 16) & 0xff; |
| 54 | int endG = (end >> 8) & 0xff; |
| 55 | int endB = end & 0xff; |
| 56 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 57 | return (int)((startA + (int)(fraction * (endA - startA))) << 24) | |
| 58 | (int)((startR + (int)(fraction * (endR - startR))) << 16) | |
| 59 | (int)((startG + (int)(fraction * (endG - startG))) << 8) | |
| 60 | (int)((startB + (int)(fraction * (endB - startB)))); |
John Reck | 16c9d6a | 2015-11-17 15:51:08 -0800 | [diff] [blame] | 61 | } |
| 62 | |
Chris Craik | d2dfd8f | 2015-12-16 14:27:20 -0800 | [diff] [blame] | 63 | sp<DeferredLayerUpdater> TestUtils::createTextureLayerUpdater( |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 64 | renderthread::RenderThread& renderThread) { |
| 65 | android::uirenderer::renderthread::IRenderPipeline* pipeline; |
John Reck | 18f442e | 2018-04-09 16:56:34 -0700 | [diff] [blame] | 66 | if (Properties::getRenderPipelineType() == RenderPipelineType::SkiaGL) { |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 67 | pipeline = new skiapipeline::SkiaOpenGLPipeline(renderThread); |
| 68 | } else { |
| 69 | pipeline = new skiapipeline::SkiaVulkanPipeline(renderThread); |
| 70 | } |
| 71 | sp<DeferredLayerUpdater> layerUpdater = pipeline->createTextureLayer(); |
sergeyv | 3e9999b | 2017-01-19 15:37:02 -0800 | [diff] [blame] | 72 | layerUpdater->apply(); |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 73 | delete pipeline; |
| 74 | return layerUpdater; |
| 75 | } |
| 76 | |
| 77 | sp<DeferredLayerUpdater> TestUtils::createTextureLayerUpdater( |
Chris Craik | d2dfd8f | 2015-12-16 14:27:20 -0800 | [diff] [blame] | 78 | renderthread::RenderThread& renderThread, uint32_t width, uint32_t height, |
Chris Craik | 243e85b | 2016-03-25 15:26:11 -0700 | [diff] [blame] | 79 | const SkMatrix& transform) { |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 80 | sp<DeferredLayerUpdater> layerUpdater = createTextureLayerUpdater(renderThread); |
Stan Iliev | 564ca3e | 2018-09-04 22:00:00 +0000 | [diff] [blame] | 81 | layerUpdater->backingLayer()->getTransform() = transform; |
Chris Craik | 243e85b | 2016-03-25 15:26:11 -0700 | [diff] [blame] | 82 | layerUpdater->setSize(width, height); |
| 83 | layerUpdater->setTransform(&transform); |
| 84 | |
| 85 | // updateLayer so it's ready to draw |
ramindani | 3952ed6 | 2021-08-12 15:55:12 +0000 | [diff] [blame] | 86 | layerUpdater->updateLayer(true, nullptr, 0, SkRect::MakeEmpty()); |
Chris Craik | d2dfd8f | 2015-12-16 14:27:20 -0800 | [diff] [blame] | 87 | return layerUpdater; |
| 88 | } |
| 89 | |
Mike Reed | f6d86ac | 2019-01-18 14:13:23 -0500 | [diff] [blame] | 90 | void TestUtils::drawUtf8ToCanvas(Canvas* canvas, const char* text, const Paint& paint, float x, |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 91 | float y) { |
Derek Sollenberger | 79abbf2 | 2016-03-24 11:07:19 -0400 | [diff] [blame] | 92 | auto utf16 = asciiToUtf16(text); |
Seigo Nonaka | 3a4217f | 2018-05-02 12:56:16 -0700 | [diff] [blame] | 93 | uint32_t length = strlen(text); |
Mike Reed | f6d86ac | 2019-01-18 14:13:23 -0500 | [diff] [blame] | 94 | |
John Reck | 283bb46 | 2018-12-13 16:40:14 -0800 | [diff] [blame] | 95 | canvas->drawText(utf16.get(), length, // text buffer |
| 96 | 0, length, // draw range |
| 97 | 0, length, // context range |
Mike Reed | f6d86ac | 2019-01-18 14:13:23 -0500 | [diff] [blame] | 98 | x, y, minikin::Bidi::LTR, paint, nullptr, nullptr /* measured text */); |
Chris Craik | a171727 | 2015-11-19 13:02:43 -0800 | [diff] [blame] | 99 | } |
| 100 | |
Mike Reed | f6d86ac | 2019-01-18 14:13:23 -0500 | [diff] [blame] | 101 | void TestUtils::drawUtf8ToCanvas(Canvas* canvas, const char* text, const Paint& paint, |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 102 | const SkPath& path) { |
Derek Sollenberger | 79abbf2 | 2016-03-24 11:07:19 -0400 | [diff] [blame] | 103 | auto utf16 = asciiToUtf16(text); |
Mike Reed | f6d86ac | 2019-01-18 14:13:23 -0500 | [diff] [blame] | 104 | canvas->drawTextOnPath(utf16.get(), strlen(text), minikin::Bidi::LTR, path, 0, 0, paint, |
John Reck | 283bb46 | 2018-12-13 16:40:14 -0800 | [diff] [blame] | 105 | nullptr); |
Chris Craik | d7448e6 | 2015-12-15 10:34:36 -0800 | [diff] [blame] | 106 | } |
| 107 | |
John Reck | e5da4ef | 2016-01-14 12:34:46 -0800 | [diff] [blame] | 108 | void TestUtils::TestTask::run() { |
John Reck | e5da4ef | 2016-01-14 12:34:46 -0800 | [diff] [blame] | 109 | // RenderState only valid once RenderThread is running, so queried here |
sergeyv | 7dc370b | 2016-06-17 11:21:11 -0700 | [diff] [blame] | 110 | renderthread::RenderThread& renderThread = renderthread::RenderThread::getInstance(); |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 111 | if (Properties::getRenderPipelineType() == RenderPipelineType::SkiaVulkan) { |
Stan Iliev | 981afe7 | 2019-02-13 14:24:33 -0500 | [diff] [blame] | 112 | renderThread.requireVkContext(); |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 113 | } else { |
John Reck | 1e51071 | 2018-04-23 08:15:03 -0700 | [diff] [blame] | 114 | renderThread.requireGlContext(); |
Greg Daniel | 98c78dad | 2017-01-04 14:45:56 -0500 | [diff] [blame] | 115 | } |
John Reck | e5da4ef | 2016-01-14 12:34:46 -0800 | [diff] [blame] | 116 | |
sergeyv | 7dc370b | 2016-06-17 11:21:11 -0700 | [diff] [blame] | 117 | rtCallback(renderThread); |
Derek Sollenberger | 56ad6ec | 2016-07-22 12:13:32 -0400 | [diff] [blame] | 118 | |
John Reck | 283bb46 | 2018-12-13 16:40:14 -0800 | [diff] [blame] | 119 | renderThread.destroyRenderingContext(); |
John Reck | e5da4ef | 2016-01-14 12:34:46 -0800 | [diff] [blame] | 120 | } |
| 121 | |
Derek Sollenberger | 79abbf2 | 2016-03-24 11:07:19 -0400 | [diff] [blame] | 122 | std::unique_ptr<uint16_t[]> TestUtils::asciiToUtf16(const char* str) { |
| 123 | const int length = strlen(str); |
| 124 | std::unique_ptr<uint16_t[]> utf16(new uint16_t[length]); |
| 125 | for (int i = 0; i < length; i++) { |
| 126 | utf16.get()[i] = str[i]; |
| 127 | } |
| 128 | return utf16; |
sergeyv | dccca44 | 2016-03-21 15:38:21 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Stan Iliev | 021693b | 2016-10-17 16:26:15 -0400 | [diff] [blame] | 131 | SkColor TestUtils::getColor(const sk_sp<SkSurface>& surface, int x, int y) { |
| 132 | SkPixmap pixmap; |
| 133 | if (!surface->peekPixels(&pixmap)) { |
| 134 | return 0; |
| 135 | } |
| 136 | switch (pixmap.colorType()) { |
| 137 | case kGray_8_SkColorType: { |
| 138 | const uint8_t* addr = pixmap.addr8(x, y); |
| 139 | return SkColorSetRGB(*addr, *addr, *addr); |
| 140 | } |
| 141 | case kAlpha_8_SkColorType: { |
| 142 | const uint8_t* addr = pixmap.addr8(x, y); |
| 143 | return SkColorSetA(0, addr[0]); |
| 144 | } |
| 145 | case kRGB_565_SkColorType: { |
| 146 | const uint16_t* addr = pixmap.addr16(x, y); |
| 147 | return SkPixel16ToColor(addr[0]); |
| 148 | } |
| 149 | case kARGB_4444_SkColorType: { |
| 150 | const uint16_t* addr = pixmap.addr16(x, y); |
| 151 | SkPMColor c = SkPixel4444ToPixel32(addr[0]); |
| 152 | return SkUnPreMultiply::PMColorToColor(c); |
| 153 | } |
| 154 | case kBGRA_8888_SkColorType: { |
| 155 | const uint32_t* addr = pixmap.addr32(x, y); |
| 156 | SkPMColor c = SkSwizzle_BGRA_to_PMColor(addr[0]); |
| 157 | return SkUnPreMultiply::PMColorToColor(c); |
| 158 | } |
| 159 | case kRGBA_8888_SkColorType: { |
| 160 | const uint32_t* addr = pixmap.addr32(x, y); |
| 161 | SkPMColor c = SkSwizzle_RGBA_to_PMColor(addr[0]); |
| 162 | return SkUnPreMultiply::PMColorToColor(c); |
| 163 | } |
| 164 | default: |
| 165 | return 0; |
| 166 | } |
| 167 | return 0; |
| 168 | } |
| 169 | |
Stan Iliev | 5277127 | 2016-11-17 09:54:38 -0500 | [diff] [blame] | 170 | SkRect TestUtils::getClipBounds(const SkCanvas* canvas) { |
Mike Reed | 5e43898 | 2017-01-25 08:23:25 -0500 | [diff] [blame] | 171 | return SkRect::Make(canvas->getDeviceClipBounds()); |
Stan Iliev | 5277127 | 2016-11-17 09:54:38 -0500 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | SkRect TestUtils::getLocalClipBounds(const SkCanvas* canvas) { |
| 175 | SkMatrix invertedTotalMatrix; |
| 176 | if (!canvas->getTotalMatrix().invert(&invertedTotalMatrix)) { |
| 177 | return SkRect::MakeEmpty(); |
| 178 | } |
| 179 | SkRect outlineInDeviceCoord = TestUtils::getClipBounds(canvas); |
| 180 | SkRect outlineInLocalCoord; |
| 181 | invertedTotalMatrix.mapRect(&outlineInLocalCoord, outlineInDeviceCoord); |
| 182 | return outlineInLocalCoord; |
| 183 | } |
| 184 | |
Kevin Lubick | 09a7709 | 2023-10-31 14:58:26 +0000 | [diff] [blame] | 185 | SkFont TestUtils::defaultFont() { |
| 186 | const std::shared_ptr<minikin::MinikinFont>& minikinFont = |
| 187 | Typeface::resolveDefault(nullptr)->fFontCollection->getFamilyAt(0)->getFont(0)->baseTypeface(); |
| 188 | SkTypeface* skTypeface = reinterpret_cast<const MinikinFontSkia*>(minikinFont.get())->GetSkTypeface(); |
| 189 | LOG_ALWAYS_FATAL_IF(skTypeface == nullptr); |
| 190 | return SkFont(sk_ref_sp(skTypeface)); |
| 191 | } |
| 192 | |
John Reck | 16c9d6a | 2015-11-17 15:51:08 -0800 | [diff] [blame] | 193 | } /* namespace uirenderer */ |
| 194 | } /* namespace android */ |