blob: e09c24381d9d880b26aec6c1a536e2a469e145c1 [file] [log] [blame]
Romain Guy7fbcc042010-08-04 15:40:07 -07001/*
2 * Copyright (C) 2010 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#define LOG_TAG "OpenGLRenderer"
18
Romain Guya2341a92010-09-08 18:04:33 -070019#include <utils/threads.h>
20
Romain Guy7fbcc042010-08-04 15:40:07 -070021#include "PathCache.h"
Romain Guyfb8b7632010-08-23 21:05:08 -070022#include "Properties.h"
Romain Guy7fbcc042010-08-04 15:40:07 -070023
24namespace android {
25namespace uirenderer {
26
Romain Guy33f6beb2012-02-16 19:24:51 -080027// Defined in ShapeCache.h
28void computePathBounds(const SkPath *path, const SkPaint* paint,
29 float& left, float& top, float& offset, uint32_t& width, uint32_t& height) {
30 const SkRect& bounds = path->getBounds();
31
32 const float pathWidth = fmax(bounds.width(), 1.0f);
33 const float pathHeight = fmax(bounds.height(), 1.0f);
34
35 left = bounds.fLeft;
36 top = bounds.fTop;
37
38 offset = (int) floorf(fmax(paint->getStrokeWidth(), 1.0f) * 1.5f + 0.5f);
39
40 width = uint32_t(pathWidth + offset * 2.0 + 0.5);
41 height = uint32_t(pathHeight + offset * 2.0 + 0.5);
42}
43
Romain Guy7fbcc042010-08-04 15:40:07 -070044///////////////////////////////////////////////////////////////////////////////
Romain Guyff26a0c2011-01-20 11:35:46 -080045// Path cache
Romain Guy7fbcc042010-08-04 15:40:07 -070046///////////////////////////////////////////////////////////////////////////////
47
Romain Guyff26a0c2011-01-20 11:35:46 -080048PathCache::PathCache(): ShapeCache<PathCacheEntry>("path",
49 PROPERTY_PATH_CACHE_SIZE, DEFAULT_PATH_CACHE_SIZE) {
Romain Guy7fbcc042010-08-04 15:40:07 -070050}
51
Romain Guya2341a92010-09-08 18:04:33 -070052void PathCache::remove(SkPath* path) {
Romain Guya2341a92010-09-08 18:04:33 -070053 // TODO: Linear search...
Jeff Brownd9e688c2011-11-11 15:40:13 -080054 Vector<size_t> pathsToRemove;
55 for (size_t i = 0; i < mCache.size(); i++) {
Romain Guya2341a92010-09-08 18:04:33 -070056 if (mCache.getKeyAt(i).path == path) {
Romain Guy9e108412010-11-09 14:35:20 -080057 pathsToRemove.push(i);
Romain Guyfe48f652010-11-11 15:36:56 -080058 removeTexture(mCache.getValueAt(i));
Romain Guya2341a92010-09-08 18:04:33 -070059 }
60 }
Romain Guy9e108412010-11-09 14:35:20 -080061
Romain Guyfe48f652010-11-11 15:36:56 -080062 mCache.setOnEntryRemovedListener(NULL);
Romain Guy9e108412010-11-09 14:35:20 -080063 for (size_t i = 0; i < pathsToRemove.size(); i++) {
Romain Guy7b8b7582011-02-24 19:52:37 -080064 // This will work because pathsToRemove is sorted
65 // and because the cache is a sorted keyed vector
66 mCache.removeAt(pathsToRemove.itemAt(i) - i);
Romain Guy9e108412010-11-09 14:35:20 -080067 }
Romain Guyfe48f652010-11-11 15:36:56 -080068 mCache.setOnEntryRemovedListener(this);
69}
70
71void PathCache::removeDeferred(SkPath* path) {
72 Mutex::Autolock _l(mLock);
73 mGarbage.push(path);
74}
75
76void PathCache::clearGarbage() {
77 Mutex::Autolock _l(mLock);
78 size_t count = mGarbage.size();
79 for (size_t i = 0; i < count; i++) {
80 remove(mGarbage.itemAt(i));
81 }
82 mGarbage.clear();
Romain Guya2341a92010-09-08 18:04:33 -070083}
84
Romain Guy7fbcc042010-08-04 15:40:07 -070085PathTexture* PathCache::get(SkPath* path, SkPaint* paint) {
86 PathCacheEntry entry(path, paint);
87 PathTexture* texture = mCache.get(entry);
88
Romain Guy33f6beb2012-02-16 19:24:51 -080089 float left, top, offset;
90 uint32_t width, height;
91
Romain Guy7fbcc042010-08-04 15:40:07 -070092 if (!texture) {
93 texture = addTexture(entry, path, paint);
94 } else if (path->getGenerationID() != texture->generation) {
95 mCache.remove(entry);
96 texture = addTexture(entry, path, paint);
97 }
98
Romain Guy7fbcc042010-08-04 15:40:07 -070099 return texture;
100}
101
Romain Guy7fbcc042010-08-04 15:40:07 -0700102}; // namespace uirenderer
103}; // namespace android