blob: ec86101f4c0b6617de9566abc46ed003cac712e9 [file] [log] [blame]
Romain Guy7fbcc042010-08-04 15:40:07 -07001/*
Romain Guyc46d07a2013-03-15 19:06:39 -07002 * Copyright (C) 2013 The Android Open Source Project
Romain Guy7fbcc042010-08-04 15:40:07 -07003 *
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#define LOG_TAG "OpenGLRenderer"
Romain Guyc46d07a2013-03-15 19:06:39 -070018#define ATRACE_TAG ATRACE_TAG_VIEW
Romain Guy7fbcc042010-08-04 15:40:07 -070019
Romain Guyc46d07a2013-03-15 19:06:39 -070020#include <SkBitmap.h>
21#include <SkCanvas.h>
Chris Craik98d608d2014-07-17 12:25:11 -070022#include <SkColor.h>
Romain Guyc46d07a2013-03-15 19:06:39 -070023#include <SkPaint.h>
24#include <SkPath.h>
25#include <SkRect.h>
Romain Guya2341a92010-09-08 18:04:33 -070026
Romain Guyc46d07a2013-03-15 19:06:39 -070027#include <utils/JenkinsHash.h>
28#include <utils/Trace.h>
Romain Guyca89e2a2013-03-08 17:44:20 -080029
30#include "Caches.h"
Romain Guy7fbcc042010-08-04 15:40:07 -070031#include "PathCache.h"
Romain Guyc46d07a2013-03-15 19:06:39 -070032
33#include "thread/Signal.h"
Romain Guyc46d07a2013-03-15 19:06:39 -070034#include "thread/TaskProcessor.h"
Romain Guy7fbcc042010-08-04 15:40:07 -070035
36namespace android {
37namespace uirenderer {
38
Romain Guyca89e2a2013-03-08 17:44:20 -080039///////////////////////////////////////////////////////////////////////////////
Romain Guyc46d07a2013-03-15 19:06:39 -070040// Cache entries
41///////////////////////////////////////////////////////////////////////////////
42
Chris Craike2bb3802015-03-13 15:07:52 -070043PathDescription::PathDescription()
44 : type(kShapeNone)
45 , join(SkPaint::kDefault_Join)
46 , cap(SkPaint::kDefault_Cap)
47 , style(SkPaint::kFill_Style)
48 , miter(4.0f)
49 , strokeWidth(1.0f)
50 , pathEffect(nullptr) {
Romain Guyc46d07a2013-03-15 19:06:39 -070051 memset(&shape, 0, sizeof(Shape));
52}
53
Chris Craike2bb3802015-03-13 15:07:52 -070054PathDescription::PathDescription(ShapeType type, const SkPaint* paint)
55 : type(type)
56 , join(paint->getStrokeJoin())
57 , cap(paint->getStrokeCap())
58 , style(paint->getStyle())
59 , miter(paint->getStrokeMiter())
60 , strokeWidth(paint->getStrokeWidth())
61 , pathEffect(paint->getPathEffect()) {
Romain Guyc46d07a2013-03-15 19:06:39 -070062 memset(&shape, 0, sizeof(Shape));
63}
64
65hash_t PathDescription::hash() const {
66 uint32_t hash = JenkinsHashMix(0, type);
67 hash = JenkinsHashMix(hash, join);
68 hash = JenkinsHashMix(hash, cap);
69 hash = JenkinsHashMix(hash, style);
70 hash = JenkinsHashMix(hash, android::hash_type(miter));
71 hash = JenkinsHashMix(hash, android::hash_type(strokeWidth));
72 hash = JenkinsHashMix(hash, android::hash_type(pathEffect));
73 hash = JenkinsHashMixBytes(hash, (uint8_t*) &shape, sizeof(Shape));
74 return JenkinsHashWhiten(hash);
75}
76
Romain Guyc46d07a2013-03-15 19:06:39 -070077///////////////////////////////////////////////////////////////////////////////
78// Utilities
79///////////////////////////////////////////////////////////////////////////////
80
Chris Craikd218a922014-01-02 17:13:34 -080081bool PathCache::canDrawAsConvexPath(SkPath* path, const SkPaint* paint) {
Romain Guyc46d07a2013-03-15 19:06:39 -070082 // NOTE: This should only be used after PathTessellator handles joins properly
Chris Craikd41c4d82015-01-05 15:51:13 -080083 return paint->getPathEffect() == nullptr && path->getConvexity() == SkPath::kConvex_Convexity;
Romain Guyc46d07a2013-03-15 19:06:39 -070084}
85
86void PathCache::computePathBounds(const SkPath* path, const SkPaint* paint,
87 float& left, float& top, float& offset, uint32_t& width, uint32_t& height) {
88 const SkRect& bounds = path->getBounds();
89 PathCache::computeBounds(bounds, paint, left, top, offset, width, height);
90}
91
92void PathCache::computeBounds(const SkRect& bounds, const SkPaint* paint,
93 float& left, float& top, float& offset, uint32_t& width, uint32_t& height) {
Chris Craike6a15ee2015-07-07 18:42:17 -070094 const float pathWidth = std::max(bounds.width(), 1.0f);
95 const float pathHeight = std::max(bounds.height(), 1.0f);
Romain Guyc46d07a2013-03-15 19:06:39 -070096
97 left = bounds.fLeft;
98 top = bounds.fTop;
99
Chris Craike6a15ee2015-07-07 18:42:17 -0700100 offset = (int) floorf(std::max(paint->getStrokeWidth(), 1.0f) * 1.5f + 0.5f);
Romain Guyc46d07a2013-03-15 19:06:39 -0700101
102 width = uint32_t(pathWidth + offset * 2.0 + 0.5);
103 height = uint32_t(pathHeight + offset * 2.0 + 0.5);
104}
105
106static void initBitmap(SkBitmap& bitmap, uint32_t width, uint32_t height) {
Mike Reedb9330552014-06-16 17:31:48 -0400107 bitmap.allocPixels(SkImageInfo::MakeA8(width, height));
Romain Guyc46d07a2013-03-15 19:06:39 -0700108 bitmap.eraseColor(0);
109}
110
111static void initPaint(SkPaint& paint) {
112 // Make sure the paint is opaque, color, alpha, filter, etc.
113 // will be applied later when compositing the alpha8 texture
Chris Craik98d608d2014-07-17 12:25:11 -0700114 paint.setColor(SK_ColorBLACK);
Romain Guyc46d07a2013-03-15 19:06:39 -0700115 paint.setAlpha(255);
Chris Craikd41c4d82015-01-05 15:51:13 -0800116 paint.setColorFilter(nullptr);
117 paint.setMaskFilter(nullptr);
118 paint.setShader(nullptr);
Romain Guyc46d07a2013-03-15 19:06:39 -0700119 SkXfermode* mode = SkXfermode::Create(SkXfermode::kSrc_Mode);
120 SkSafeUnref(paint.setXfermode(mode));
121}
122
123static void drawPath(const SkPath *path, const SkPaint* paint, SkBitmap& bitmap,
124 float left, float top, float offset, uint32_t width, uint32_t height) {
125 initBitmap(bitmap, width, height);
126
127 SkPaint pathPaint(*paint);
128 initPaint(pathPaint);
129
130 SkCanvas canvas(bitmap);
131 canvas.translate(-left + offset, -top + offset);
132 canvas.drawPath(*path, pathPaint);
133}
134
Romain Guyc46d07a2013-03-15 19:06:39 -0700135///////////////////////////////////////////////////////////////////////////////
136// Cache constructor/destructor
137///////////////////////////////////////////////////////////////////////////////
138
139PathCache::PathCache():
140 mCache(LruCache<PathDescription, PathTexture*>::kUnlimitedCapacity),
caiqinl4b505372016-06-24 13:37:46 +0800141 mSize(0), mMaxSize(MB(DEFAULT_PATH_CACHE_SIZE)), mTexNum(0) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700142 char property[PROPERTY_VALUE_MAX];
Chris Craikd41c4d82015-01-05 15:51:13 -0800143 if (property_get(PROPERTY_PATH_CACHE_SIZE, property, nullptr) > 0) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700144 INIT_LOGD(" Setting %s cache size to %sMB", name, property);
Chris Craik42455fc2015-05-11 18:23:09 -0700145 mMaxSize = MB(atof(property));
Romain Guyc46d07a2013-03-15 19:06:39 -0700146 } else {
147 INIT_LOGD(" Using default %s cache size of %.2fMB", name, DEFAULT_PATH_CACHE_SIZE);
148 }
Romain Guyc46d07a2013-03-15 19:06:39 -0700149
Romain Guyc46d07a2013-03-15 19:06:39 -0700150 mCache.setOnEntryRemovedListener(this);
151
152 GLint maxTextureSize;
153 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);
154 mMaxTextureSize = maxTextureSize;
155
Chris Craik2507c342015-05-04 14:36:49 -0700156 mDebugEnabled = Properties::debugLevel & kDebugCaches;
Romain Guyc46d07a2013-03-15 19:06:39 -0700157}
158
Chris Craik05f3d6e2014-06-02 16:27:04 -0700159PathCache::~PathCache() {
160 mCache.clear();
161}
162
Romain Guyc46d07a2013-03-15 19:06:39 -0700163///////////////////////////////////////////////////////////////////////////////
164// Size management
165///////////////////////////////////////////////////////////////////////////////
166
167uint32_t PathCache::getSize() {
168 return mSize;
169}
170
171uint32_t PathCache::getMaxSize() {
172 return mMaxSize;
173}
174
Romain Guyc46d07a2013-03-15 19:06:39 -0700175///////////////////////////////////////////////////////////////////////////////
176// Callbacks
177///////////////////////////////////////////////////////////////////////////////
178
Andreas Gampe64bb4132014-11-22 00:35:09 +0000179void PathCache::operator()(PathDescription& entry, PathTexture*& texture) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700180 removeTexture(texture);
181}
182
183///////////////////////////////////////////////////////////////////////////////
184// Caching
185///////////////////////////////////////////////////////////////////////////////
186
187void PathCache::removeTexture(PathTexture* texture) {
188 if (texture) {
189 const uint32_t size = texture->width * texture->height;
Romain Guy5d923202013-08-21 18:40:24 -0700190
191 // If there is a pending task we must wait for it to return
192 // before attempting our cleanup
193 const sp<Task<SkBitmap*> >& task = texture->task();
Chris Craikd41c4d82015-01-05 15:51:13 -0800194 if (task != nullptr) {
Andreas Gampe1e196742014-11-10 15:23:43 -0800195 task->getResult();
Romain Guy5d923202013-08-21 18:40:24 -0700196 texture->clearTask();
197 } else {
198 // If there is a pending task, the path was not added
199 // to the cache and the size wasn't increased
200 if (size > mSize) {
201 ALOGE("Removing path texture of size %d will leave "
202 "the cache in an inconsistent state", size);
203 }
204 mSize -= size;
caiqinl4b505372016-06-24 13:37:46 +0800205 mTexNum--;
Romain Guy5d923202013-08-21 18:40:24 -0700206 }
Romain Guyc46d07a2013-03-15 19:06:39 -0700207
208 PATH_LOGD("PathCache::delete name, size, mSize = %d, %d, %d",
209 texture->id, size, mSize);
210 if (mDebugEnabled) {
211 ALOGD("Shape deleted, size = %d", size);
212 }
213
214 if (texture->id) {
Chris Craik44eb2c02015-01-29 09:45:09 -0800215 Caches::getInstance().textureState().deleteTexture(texture->id);
Romain Guyc46d07a2013-03-15 19:06:39 -0700216 }
217 delete texture;
218 }
219}
220
221void PathCache::purgeCache(uint32_t width, uint32_t height) {
222 const uint32_t size = width * height;
223 // Don't even try to cache a bitmap that's bigger than the cache
224 if (size < mMaxSize) {
225 while (mSize + size > mMaxSize) {
226 mCache.removeOldest();
227 }
228 }
229}
230
231void PathCache::trim() {
caiqinl4b505372016-06-24 13:37:46 +0800232 while (mSize > mMaxSize || mTexNum > DEFAULT_PATH_TEXTURE_CAP) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700233 mCache.removeOldest();
234 }
235}
236
237PathTexture* PathCache::addTexture(const PathDescription& entry, const SkPath *path,
238 const SkPaint* paint) {
Chris Craik70850ea2014-11-18 10:49:23 -0800239 ATRACE_NAME("Generate Path Texture");
Romain Guyc46d07a2013-03-15 19:06:39 -0700240
241 float left, top, offset;
242 uint32_t width, height;
243 computePathBounds(path, paint, left, top, offset, width, height);
244
Chris Craikd41c4d82015-01-05 15:51:13 -0800245 if (!checkTextureSize(width, height)) return nullptr;
Romain Guyc46d07a2013-03-15 19:06:39 -0700246
247 purgeCache(width, height);
248
249 SkBitmap bitmap;
250 drawPath(path, paint, bitmap, left, top, offset, width, height);
251
Chris Craike2bb3802015-03-13 15:07:52 -0700252 PathTexture* texture = new PathTexture(Caches::getInstance(),
253 left, top, offset, width, height,
Romain Guyc46d07a2013-03-15 19:06:39 -0700254 path->getGenerationID());
Romain Guy4500a8d2013-03-26 17:29:51 -0700255 generateTexture(entry, &bitmap, texture);
Romain Guyc46d07a2013-03-15 19:06:39 -0700256
257 return texture;
258}
259
Romain Guy4500a8d2013-03-26 17:29:51 -0700260void PathCache::generateTexture(const PathDescription& entry, SkBitmap* bitmap,
261 PathTexture* texture, bool addToCache) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700262 generateTexture(*bitmap, texture);
263
Chris Craik42455fc2015-05-11 18:23:09 -0700264 // Note here that we upload to a texture even if it's bigger than mMaxSize.
265 // Such an entry in mCache will only be temporary, since it will be evicted
266 // immediately on trim, or on any other Path entering the cache.
Romain Guyc46d07a2013-03-15 19:06:39 -0700267 uint32_t size = texture->width * texture->height;
Chris Craik42455fc2015-05-11 18:23:09 -0700268 mSize += size;
269 PATH_LOGD("PathCache::get/create: name, size, mSize = %d, %d, %d",
270 texture->id, size, mSize);
271 if (mDebugEnabled) {
272 ALOGD("Shape created, size = %d", size);
273 }
274 if (addToCache) {
275 mCache.put(entry, texture);
Romain Guyc46d07a2013-03-15 19:06:39 -0700276 }
277}
278
279void PathCache::clear() {
280 mCache.clear();
281}
282
283void PathCache::generateTexture(SkBitmap& bitmap, Texture* texture) {
Chris Craikcf8426c2015-05-13 17:05:48 -0700284 ATRACE_NAME("Upload Path Texture");
Romain Guyc46d07a2013-03-15 19:06:39 -0700285 SkAutoLockPixels alp(bitmap);
286 if (!bitmap.readyToDraw()) {
287 ALOGE("Cannot generate texture from bitmap");
288 return;
289 }
290
291 glGenTextures(1, &texture->id);
292
Chris Craik44eb2c02015-01-29 09:45:09 -0800293 Caches::getInstance().textureState().bindTexture(texture->id);
Romain Guyc46d07a2013-03-15 19:06:39 -0700294 // Textures are Alpha8
295 glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
296
297 texture->blend = true;
298 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, texture->width, texture->height, 0,
299 GL_ALPHA, GL_UNSIGNED_BYTE, bitmap.getPixels());
300
301 texture->setFilter(GL_LINEAR);
302 texture->setWrap(GL_CLAMP_TO_EDGE);
caiqinl4b505372016-06-24 13:37:46 +0800303 mTexNum++;
Romain Guyc46d07a2013-03-15 19:06:39 -0700304}
305
306///////////////////////////////////////////////////////////////////////////////
Romain Guyca89e2a2013-03-08 17:44:20 -0800307// Path precaching
308///////////////////////////////////////////////////////////////////////////////
Romain Guyfdd6fc12012-04-27 11:47:13 -0700309
Romain Guy5dc7fa72013-03-11 20:48:31 -0700310PathCache::PathProcessor::PathProcessor(Caches& caches):
311 TaskProcessor<SkBitmap*>(&caches.tasks), mMaxTextureSize(caches.maxTextureSize) {
Romain Guyfdd6fc12012-04-27 11:47:13 -0700312}
Romain Guy33f6beb2012-02-16 19:24:51 -0800313
Romain Guy5dc7fa72013-03-11 20:48:31 -0700314void PathCache::PathProcessor::onProcess(const sp<Task<SkBitmap*> >& task) {
Chris Craik05f3d6e2014-06-02 16:27:04 -0700315 PathTask* t = static_cast<PathTask*>(task.get());
Romain Guy5dc7fa72013-03-11 20:48:31 -0700316 ATRACE_NAME("pathPrecache");
317
318 float left, top, offset;
319 uint32_t width, height;
Chris Craik906d47f2014-06-27 18:30:23 -0700320 PathCache::computePathBounds(&t->path, &t->paint, left, top, offset, width, height);
Romain Guy5dc7fa72013-03-11 20:48:31 -0700321
322 PathTexture* texture = t->texture;
323 texture->left = left;
324 texture->top = top;
325 texture->offset = offset;
326 texture->width = width;
327 texture->height = height;
328
329 if (width <= mMaxTextureSize && height <= mMaxTextureSize) {
330 SkBitmap* bitmap = new SkBitmap();
Chris Craik906d47f2014-06-27 18:30:23 -0700331 drawPath(&t->path, &t->paint, *bitmap, left, top, offset, width, height);
Romain Guy5dc7fa72013-03-11 20:48:31 -0700332 t->setResult(bitmap);
333 } else {
Romain Guy0f809f32013-03-13 14:31:46 -0700334 texture->width = 0;
335 texture->height = 0;
Chris Craikd41c4d82015-01-05 15:51:13 -0800336 t->setResult(nullptr);
Romain Guyca89e2a2013-03-08 17:44:20 -0800337 }
Romain Guy33f6beb2012-02-16 19:24:51 -0800338}
339
Romain Guy7fbcc042010-08-04 15:40:07 -0700340///////////////////////////////////////////////////////////////////////////////
Romain Guyc46d07a2013-03-15 19:06:39 -0700341// Paths
Romain Guy7fbcc042010-08-04 15:40:07 -0700342///////////////////////////////////////////////////////////////////////////////
343
Derek Sollenbergeree248592015-02-12 14:10:21 -0500344void PathCache::removeDeferred(const SkPath* path) {
Romain Guyca89e2a2013-03-08 17:44:20 -0800345 Mutex::Autolock l(mLock);
Derek Sollenbergeree248592015-02-12 14:10:21 -0500346 mGarbage.push(path->getGenerationID());
Romain Guyfe48f652010-11-11 15:36:56 -0800347}
348
349void PathCache::clearGarbage() {
Romain Guye3b0a012013-06-26 15:45:41 -0700350 Vector<PathDescription> pathsToRemove;
351
352 { // scope for the mutex
353 Mutex::Autolock l(mLock);
354 size_t count = mGarbage.size();
355 for (size_t i = 0; i < count; i++) {
Derek Sollenbergeree248592015-02-12 14:10:21 -0500356 const uint32_t generationID = mGarbage.itemAt(i);
357
358 LruCache<PathDescription, PathTexture*>::Iterator iter(mCache);
359 while (iter.next()) {
360 const PathDescription& key = iter.key();
361 if (key.type == kShapePath && key.shape.path.mGenerationID == generationID) {
362 pathsToRemove.push(key);
363 }
364 }
Romain Guye3b0a012013-06-26 15:45:41 -0700365 }
366 mGarbage.clear();
Romain Guyfe48f652010-11-11 15:36:56 -0800367 }
Romain Guye3b0a012013-06-26 15:45:41 -0700368
369 for (size_t i = 0; i < pathsToRemove.size(); i++) {
370 mCache.remove(pathsToRemove.itemAt(i));
371 }
Romain Guya2341a92010-09-08 18:04:33 -0700372}
373
Chris Craikd218a922014-01-02 17:13:34 -0800374PathTexture* PathCache::get(const SkPath* path, const SkPaint* paint) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700375 PathDescription entry(kShapePath, paint);
Derek Sollenbergeree248592015-02-12 14:10:21 -0500376 entry.shape.path.mGenerationID = path->getGenerationID();
Romain Guyc46d07a2013-03-15 19:06:39 -0700377
Romain Guy7fbcc042010-08-04 15:40:07 -0700378 PathTexture* texture = mCache.get(entry);
379
380 if (!texture) {
381 texture = addTexture(entry, path, paint);
Romain Guyca89e2a2013-03-08 17:44:20 -0800382 } else {
383 // A bitmap is attached to the texture, this means we need to
384 // upload it as a GL texture
Romain Guy5dc7fa72013-03-11 20:48:31 -0700385 const sp<Task<SkBitmap*> >& task = texture->task();
Chris Craikd41c4d82015-01-05 15:51:13 -0800386 if (task != nullptr) {
Romain Guyca89e2a2013-03-08 17:44:20 -0800387 // But we must first wait for the worker thread to be done
388 // producing the bitmap, so let's wait
Romain Guy5dc7fa72013-03-11 20:48:31 -0700389 SkBitmap* bitmap = task->getResult();
Romain Guyca89e2a2013-03-08 17:44:20 -0800390 if (bitmap) {
Romain Guy4500a8d2013-03-26 17:29:51 -0700391 generateTexture(entry, bitmap, texture, false);
Romain Guy5dc7fa72013-03-11 20:48:31 -0700392 texture->clearTask();
Romain Guyca89e2a2013-03-08 17:44:20 -0800393 } else {
Romain Guy0f809f32013-03-13 14:31:46 -0700394 ALOGW("Path too large to be rendered into a texture");
Romain Guy5dc7fa72013-03-11 20:48:31 -0700395 texture->clearTask();
Chris Craikd41c4d82015-01-05 15:51:13 -0800396 texture = nullptr;
Romain Guyca89e2a2013-03-08 17:44:20 -0800397 mCache.remove(entry);
398 }
Romain Guyca89e2a2013-03-08 17:44:20 -0800399 }
Romain Guy7fbcc042010-08-04 15:40:07 -0700400 }
401
Romain Guy7fbcc042010-08-04 15:40:07 -0700402 return texture;
403}
404
Digish Pandya2e4f67c2015-11-04 11:00:28 +0530405void PathCache::remove(const SkPath* path, const SkPaint* paint)
406{
407 PathDescription entry(kShapePath, paint);
408 entry.shape.path.mGenerationID = path->getGenerationID();
409 mCache.remove(entry);
410}
411
Chris Craikd218a922014-01-02 17:13:34 -0800412void PathCache::precache(const SkPath* path, const SkPaint* paint) {
Romain Guy5dc7fa72013-03-11 20:48:31 -0700413 if (!Caches::getInstance().tasks.canRunTasks()) {
414 return;
415 }
416
Romain Guyc46d07a2013-03-15 19:06:39 -0700417 PathDescription entry(kShapePath, paint);
Derek Sollenbergeree248592015-02-12 14:10:21 -0500418 entry.shape.path.mGenerationID = path->getGenerationID();
Romain Guyc46d07a2013-03-15 19:06:39 -0700419
Romain Guyca89e2a2013-03-08 17:44:20 -0800420 PathTexture* texture = mCache.get(entry);
421
422 bool generate = false;
423 if (!texture) {
424 generate = true;
Romain Guyca89e2a2013-03-08 17:44:20 -0800425 }
426
427 if (generate) {
428 // It is important to specify the generation ID so we do not
429 // attempt to precache the same path several times
Chris Craike2bb3802015-03-13 15:07:52 -0700430 texture = new PathTexture(Caches::getInstance(), path->getGenerationID());
Romain Guy5dc7fa72013-03-11 20:48:31 -0700431 sp<PathTask> task = new PathTask(path, paint, texture);
432 texture->setTask(task);
Romain Guyca89e2a2013-03-08 17:44:20 -0800433
434 // During the precaching phase we insert path texture objects into
435 // the cache that do not point to any GL texture. They are instead
436 // treated as a task for the precaching worker thread. This is why
437 // we do not check the cache limit when inserting these objects.
438 // The conversion into GL texture will happen in get(), when a client
439 // asks for a path texture. This is also when the cache limit will
440 // be enforced.
441 mCache.put(entry, texture);
Romain Guy5dc7fa72013-03-11 20:48:31 -0700442
Chris Craikd41c4d82015-01-05 15:51:13 -0800443 if (mProcessor == nullptr) {
Romain Guy5dc7fa72013-03-11 20:48:31 -0700444 mProcessor = new PathProcessor(Caches::getInstance());
445 }
Chris Craikdee66b62015-04-20 14:54:49 -0700446 mProcessor->add(task);
Romain Guyca89e2a2013-03-08 17:44:20 -0800447 }
448}
449
Romain Guyc46d07a2013-03-15 19:06:39 -0700450///////////////////////////////////////////////////////////////////////////////
451// Rounded rects
452///////////////////////////////////////////////////////////////////////////////
453
454PathTexture* PathCache::getRoundRect(float width, float height,
Chris Craikd218a922014-01-02 17:13:34 -0800455 float rx, float ry, const SkPaint* paint) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700456 PathDescription entry(kShapeRoundRect, paint);
457 entry.shape.roundRect.mWidth = width;
458 entry.shape.roundRect.mHeight = height;
459 entry.shape.roundRect.mRx = rx;
460 entry.shape.roundRect.mRy = ry;
461
462 PathTexture* texture = get(entry);
463
464 if (!texture) {
465 SkPath path;
466 SkRect r;
467 r.set(0.0f, 0.0f, width, height);
468 path.addRoundRect(r, rx, ry, SkPath::kCW_Direction);
469
470 texture = addTexture(entry, &path, paint);
471 }
472
473 return texture;
474}
475
476///////////////////////////////////////////////////////////////////////////////
477// Circles
478///////////////////////////////////////////////////////////////////////////////
479
Chris Craikd218a922014-01-02 17:13:34 -0800480PathTexture* PathCache::getCircle(float radius, const SkPaint* paint) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700481 PathDescription entry(kShapeCircle, paint);
482 entry.shape.circle.mRadius = radius;
483
484 PathTexture* texture = get(entry);
485
486 if (!texture) {
487 SkPath path;
488 path.addCircle(radius, radius, radius, SkPath::kCW_Direction);
489
490 texture = addTexture(entry, &path, paint);
491 }
492
493 return texture;
494}
495
496///////////////////////////////////////////////////////////////////////////////
497// Ovals
498///////////////////////////////////////////////////////////////////////////////
499
Chris Craikd218a922014-01-02 17:13:34 -0800500PathTexture* PathCache::getOval(float width, float height, const SkPaint* paint) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700501 PathDescription entry(kShapeOval, paint);
502 entry.shape.oval.mWidth = width;
503 entry.shape.oval.mHeight = height;
504
505 PathTexture* texture = get(entry);
506
507 if (!texture) {
508 SkPath path;
509 SkRect r;
510 r.set(0.0f, 0.0f, width, height);
511 path.addOval(r, SkPath::kCW_Direction);
512
513 texture = addTexture(entry, &path, paint);
514 }
515
516 return texture;
517}
518
519///////////////////////////////////////////////////////////////////////////////
520// Rects
521///////////////////////////////////////////////////////////////////////////////
522
Chris Craikd218a922014-01-02 17:13:34 -0800523PathTexture* PathCache::getRect(float width, float height, const SkPaint* paint) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700524 PathDescription entry(kShapeRect, paint);
525 entry.shape.rect.mWidth = width;
526 entry.shape.rect.mHeight = height;
527
528 PathTexture* texture = get(entry);
529
530 if (!texture) {
531 SkPath path;
532 SkRect r;
533 r.set(0.0f, 0.0f, width, height);
534 path.addRect(r, SkPath::kCW_Direction);
535
536 texture = addTexture(entry, &path, paint);
537 }
538
539 return texture;
540}
541
542///////////////////////////////////////////////////////////////////////////////
543// Arcs
544///////////////////////////////////////////////////////////////////////////////
545
546PathTexture* PathCache::getArc(float width, float height,
Chris Craikd218a922014-01-02 17:13:34 -0800547 float startAngle, float sweepAngle, bool useCenter, const SkPaint* paint) {
Romain Guyc46d07a2013-03-15 19:06:39 -0700548 PathDescription entry(kShapeArc, paint);
549 entry.shape.arc.mWidth = width;
550 entry.shape.arc.mHeight = height;
551 entry.shape.arc.mStartAngle = startAngle;
552 entry.shape.arc.mSweepAngle = sweepAngle;
553 entry.shape.arc.mUseCenter = useCenter;
554
555 PathTexture* texture = get(entry);
556
557 if (!texture) {
558 SkPath path;
559 SkRect r;
560 r.set(0.0f, 0.0f, width, height);
561 if (useCenter) {
562 path.moveTo(r.centerX(), r.centerY());
563 }
564 path.arcTo(r, startAngle, sweepAngle, !useCenter);
565 if (useCenter) {
566 path.close();
567 }
568
569 texture = addTexture(entry, &path, paint);
570 }
571
572 return texture;
573}
574
Romain Guy7fbcc042010-08-04 15:40:07 -0700575}; // namespace uirenderer
576}; // namespace android