blob: f51e7cc04d8d97b0b170b60a1f02b86111fabbf2 [file] [log] [blame]
John Reck16c9d6a2015-11-17 15:51:08 -08001/*
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 Craikd2dfd8f2015-12-16 14:27:20 -080019#include "DeferredLayerUpdater.h"
John Reck1bcacfd2017-11-03 10:12:19 -070020#include "hwui/Paint.h"
Chris Craikd2dfd8f2015-12-16 14:27:20 -080021
John Reck1bcacfd2017-11-03 10:12:19 -070022#include <SkClipStack.h>
Seigo Nonaka7c93e862017-10-25 16:34:48 -070023#include <minikin/Layout.h>
Greg Daniel98c78da2017-01-04 14:45:56 -050024#include <pipeline/skia/SkiaOpenGLPipeline.h>
25#include <pipeline/skia/SkiaVulkanPipeline.h>
John Reck1bcacfd2017-11-03 10:12:19 -070026#include <renderthread/EglManager.h>
27#include <renderthread/OpenGLPipeline.h>
Greg Daniel98c78da2017-01-04 14:45:56 -050028#include <renderthread/VulkanManager.h>
Ben Wagnerf4cf5d32016-02-22 15:25:35 -050029#include <utils/Unicode.h>
30
Leon Scroggins IIIee708fa2016-12-12 15:31:39 -050031#include <SkGlyphCache.h>
32
John Reck16c9d6a2015-11-17 15:51:08 -080033namespace android {
34namespace uirenderer {
35
36SkColor TestUtils::interpolateColor(float fraction, SkColor start, SkColor end) {
37 int startA = (start >> 24) & 0xff;
38 int startR = (start >> 16) & 0xff;
39 int startG = (start >> 8) & 0xff;
40 int startB = start & 0xff;
41
42 int endA = (end >> 24) & 0xff;
43 int endR = (end >> 16) & 0xff;
44 int endG = (end >> 8) & 0xff;
45 int endB = end & 0xff;
46
John Reck1bcacfd2017-11-03 10:12:19 -070047 return (int)((startA + (int)(fraction * (endA - startA))) << 24) |
48 (int)((startR + (int)(fraction * (endR - startR))) << 16) |
49 (int)((startG + (int)(fraction * (endG - startG))) << 8) |
50 (int)((startB + (int)(fraction * (endB - startB))));
John Reck16c9d6a2015-11-17 15:51:08 -080051}
52
Chris Craikd2dfd8f2015-12-16 14:27:20 -080053sp<DeferredLayerUpdater> TestUtils::createTextureLayerUpdater(
Greg Daniel98c78da2017-01-04 14:45:56 -050054 renderthread::RenderThread& renderThread) {
55 android::uirenderer::renderthread::IRenderPipeline* pipeline;
John Reck18f442e2018-04-09 16:56:34 -070056 if (Properties::getRenderPipelineType() == RenderPipelineType::SkiaGL) {
Greg Daniel98c78da2017-01-04 14:45:56 -050057 pipeline = new skiapipeline::SkiaOpenGLPipeline(renderThread);
58 } else {
59 pipeline = new skiapipeline::SkiaVulkanPipeline(renderThread);
60 }
61 sp<DeferredLayerUpdater> layerUpdater = pipeline->createTextureLayer();
sergeyv3e9999b2017-01-19 15:37:02 -080062 layerUpdater->apply();
Greg Daniel98c78da2017-01-04 14:45:56 -050063 delete pipeline;
64 return layerUpdater;
65}
66
67sp<DeferredLayerUpdater> TestUtils::createTextureLayerUpdater(
Chris Craikd2dfd8f2015-12-16 14:27:20 -080068 renderthread::RenderThread& renderThread, uint32_t width, uint32_t height,
Chris Craik243e85b2016-03-25 15:26:11 -070069 const SkMatrix& transform) {
Greg Daniel98c78da2017-01-04 14:45:56 -050070 sp<DeferredLayerUpdater> layerUpdater = createTextureLayerUpdater(renderThread);
Derek Sollenberger56ad6ec2016-07-22 12:13:32 -040071 layerUpdater->backingLayer()->getTransform().load(transform);
Chris Craik243e85b2016-03-25 15:26:11 -070072 layerUpdater->setSize(width, height);
73 layerUpdater->setTransform(&transform);
74
75 // updateLayer so it's ready to draw
Chris Craik09df8872017-02-14 12:37:49 -080076 layerUpdater->updateLayer(true, Matrix4::identity().data);
77 if (layerUpdater->backingLayer()->getApi() == Layer::Api::OpenGL) {
John Reck1bcacfd2017-11-03 10:12:19 -070078 static_cast<GlLayer*>(layerUpdater->backingLayer())
79 ->setRenderTarget(GL_TEXTURE_EXTERNAL_OES);
Chris Craik09df8872017-02-14 12:37:49 -080080 }
Chris Craikd2dfd8f2015-12-16 14:27:20 -080081 return layerUpdater;
82}
83
Chris Craike8c3c812016-02-05 20:10:50 -080084void TestUtils::layoutTextUnscaled(const SkPaint& paint, const char* text,
John Reck1bcacfd2017-11-03 10:12:19 -070085 std::vector<glyph_t>* outGlyphs,
86 std::vector<float>* outPositions, float* outTotalAdvance,
87 Rect* outBounds) {
Chris Craike8c3c812016-02-05 20:10:50 -080088 Rect bounds;
89 float totalAdvance = 0;
Chris Craik42a54072015-11-24 11:41:54 -080090 SkSurfaceProps surfaceProps(0, kUnknown_SkPixelGeometry);
Chris Craikd7448e62015-12-15 10:34:36 -080091 SkAutoGlyphCacheNoGamma autoCache(paint, &surfaceProps, &SkMatrix::I());
Chris Craik42a54072015-11-24 11:41:54 -080092 while (*text != '\0') {
Ben Wagnerf4cf5d32016-02-22 15:25:35 -050093 size_t nextIndex = 0;
94 int32_t unichar = utf32_from_utf8_at(text, 4, 0, &nextIndex);
95 text += nextIndex;
96
Derek Sollenberger086994b2018-03-09 11:46:51 -050097 glyph_t glyph = autoCache->unicharToGlyph(unichar);
98 autoCache->unicharToGlyph(unichar);
Chris Craika1717272015-11-19 13:02:43 -080099
Chris Craik42a54072015-11-24 11:41:54 -0800100 // push glyph and its relative position
Chris Craike8c3c812016-02-05 20:10:50 -0800101 outGlyphs->push_back(glyph);
102 outPositions->push_back(totalAdvance);
103 outPositions->push_back(0);
Chris Craika1717272015-11-19 13:02:43 -0800104
Chris Craik42a54072015-11-24 11:41:54 -0800105 // compute bounds
Derek Sollenberger086994b2018-03-09 11:46:51 -0500106 SkGlyph skGlyph = autoCache->getUnicharMetrics(unichar);
Chris Craik42a54072015-11-24 11:41:54 -0800107 Rect glyphBounds(skGlyph.fWidth, skGlyph.fHeight);
108 glyphBounds.translate(totalAdvance + skGlyph.fLeft, skGlyph.fTop);
109 bounds.unionWith(glyphBounds);
Chris Craika1717272015-11-19 13:02:43 -0800110
Chris Craik42a54072015-11-24 11:41:54 -0800111 // advance next character
112 SkScalar skWidth;
113 paint.getTextWidths(&glyph, sizeof(glyph), &skWidth, NULL);
114 totalAdvance += skWidth;
115 }
Chris Craike8c3c812016-02-05 20:10:50 -0800116 *outBounds = bounds;
117 *outTotalAdvance = totalAdvance;
118}
119
John Reck1bcacfd2017-11-03 10:12:19 -0700120void TestUtils::drawUtf8ToCanvas(Canvas* canvas, const char* text, const SkPaint& paint, float x,
121 float y) {
Derek Sollenberger79abbf22016-03-24 11:07:19 -0400122 auto utf16 = asciiToUtf16(text);
Stan Ilievec083812018-01-02 13:43:39 -0500123 SkPaint glyphPaint(paint);
124 glyphPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
125 canvas->drawText(utf16.get(), 0, strlen(text), strlen(text), x, y, minikin::Bidi::LTR,
Seigo Nonaka83143d02018-03-14 17:08:28 -0700126 glyphPaint, nullptr, nullptr /* measured text */);
Chris Craika1717272015-11-19 13:02:43 -0800127}
128
John Reck1bcacfd2017-11-03 10:12:19 -0700129void TestUtils::drawUtf8ToCanvas(Canvas* canvas, const char* text, const SkPaint& paint,
130 const SkPath& path) {
Derek Sollenberger79abbf22016-03-24 11:07:19 -0400131 auto utf16 = asciiToUtf16(text);
Stan Ilievec083812018-01-02 13:43:39 -0500132 SkPaint glyphPaint(paint);
133 glyphPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
134 canvas->drawTextOnPath(utf16.get(), strlen(text), minikin::Bidi::LTR, path, 0, 0, glyphPaint,
135 nullptr);
Chris Craikd7448e62015-12-15 10:34:36 -0800136}
137
John Recke5da4ef2016-01-14 12:34:46 -0800138void TestUtils::TestTask::run() {
John Recke5da4ef2016-01-14 12:34:46 -0800139 // RenderState only valid once RenderThread is running, so queried here
sergeyv7dc370b2016-06-17 11:21:11 -0700140 renderthread::RenderThread& renderThread = renderthread::RenderThread::getInstance();
Greg Daniel98c78da2017-01-04 14:45:56 -0500141 if (Properties::getRenderPipelineType() == RenderPipelineType::SkiaVulkan) {
142 renderThread.vulkanManager().initialize();
143 } else {
144 renderThread.eglManager().initialize();
145 }
John Recke5da4ef2016-01-14 12:34:46 -0800146
sergeyv7dc370b2016-06-17 11:21:11 -0700147 rtCallback(renderThread);
Derek Sollenberger56ad6ec2016-07-22 12:13:32 -0400148
Greg Daniel98c78da2017-01-04 14:45:56 -0500149 if (Properties::getRenderPipelineType() == RenderPipelineType::SkiaVulkan) {
150 renderThread.vulkanManager().destroy();
151 } else {
152 renderThread.renderState().flush(Caches::FlushMode::Full);
153 renderThread.eglManager().destroy();
154 }
John Recke5da4ef2016-01-14 12:34:46 -0800155}
156
Derek Sollenberger79abbf22016-03-24 11:07:19 -0400157std::unique_ptr<uint16_t[]> TestUtils::asciiToUtf16(const char* str) {
158 const int length = strlen(str);
159 std::unique_ptr<uint16_t[]> utf16(new uint16_t[length]);
160 for (int i = 0; i < length; i++) {
161 utf16.get()[i] = str[i];
162 }
163 return utf16;
sergeyvdccca442016-03-21 15:38:21 -0700164}
165
Stan Iliev021693b2016-10-17 16:26:15 -0400166SkColor TestUtils::getColor(const sk_sp<SkSurface>& surface, int x, int y) {
167 SkPixmap pixmap;
168 if (!surface->peekPixels(&pixmap)) {
169 return 0;
170 }
171 switch (pixmap.colorType()) {
172 case kGray_8_SkColorType: {
173 const uint8_t* addr = pixmap.addr8(x, y);
174 return SkColorSetRGB(*addr, *addr, *addr);
175 }
176 case kAlpha_8_SkColorType: {
177 const uint8_t* addr = pixmap.addr8(x, y);
178 return SkColorSetA(0, addr[0]);
179 }
180 case kRGB_565_SkColorType: {
181 const uint16_t* addr = pixmap.addr16(x, y);
182 return SkPixel16ToColor(addr[0]);
183 }
184 case kARGB_4444_SkColorType: {
185 const uint16_t* addr = pixmap.addr16(x, y);
186 SkPMColor c = SkPixel4444ToPixel32(addr[0]);
187 return SkUnPreMultiply::PMColorToColor(c);
188 }
189 case kBGRA_8888_SkColorType: {
190 const uint32_t* addr = pixmap.addr32(x, y);
191 SkPMColor c = SkSwizzle_BGRA_to_PMColor(addr[0]);
192 return SkUnPreMultiply::PMColorToColor(c);
193 }
194 case kRGBA_8888_SkColorType: {
195 const uint32_t* addr = pixmap.addr32(x, y);
196 SkPMColor c = SkSwizzle_RGBA_to_PMColor(addr[0]);
197 return SkUnPreMultiply::PMColorToColor(c);
198 }
199 default:
200 return 0;
201 }
202 return 0;
203}
204
Stan Iliev52771272016-11-17 09:54:38 -0500205SkRect TestUtils::getClipBounds(const SkCanvas* canvas) {
Mike Reed5e438982017-01-25 08:23:25 -0500206 return SkRect::Make(canvas->getDeviceClipBounds());
Stan Iliev52771272016-11-17 09:54:38 -0500207}
208
209SkRect TestUtils::getLocalClipBounds(const SkCanvas* canvas) {
210 SkMatrix invertedTotalMatrix;
211 if (!canvas->getTotalMatrix().invert(&invertedTotalMatrix)) {
212 return SkRect::MakeEmpty();
213 }
214 SkRect outlineInDeviceCoord = TestUtils::getClipBounds(canvas);
215 SkRect outlineInLocalCoord;
216 invertedTotalMatrix.mapRect(&outlineInLocalCoord, outlineInDeviceCoord);
217 return outlineInLocalCoord;
218}
219
John Reck16c9d6a2015-11-17 15:51:08 -0800220} /* namespace uirenderer */
221} /* namespace android */