blob: ff426cd3425b0d0439818512137e490af31aa18b [file] [log] [blame]
Romain Guyc0ac1932010-07-19 18:43:02 -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
Romain Guy5b3b3522010-10-27 18:57:51 -070017#ifndef ANDROID_HWUI_GRADIENT_CACHE_H
18#define ANDROID_HWUI_GRADIENT_CACHE_H
Romain Guyc0ac1932010-07-19 18:43:02 -070019
Chris Craik96a5c4c2015-01-27 15:46:35 -080020#include <memory>
21
Romain Guyb4880042013-04-05 11:17:55 -070022#include <GLES3/gl3.h>
Romain Guy8dcfd5e2012-07-20 11:36:03 -070023
Romain Guyc0ac1932010-07-19 18:43:02 -070024#include <SkShader.h>
25
Romain Guy059e12c2012-11-28 17:35:51 -080026#include <utils/LruCache.h>
Derek Sollenberger029f6432012-03-05 16:48:32 -050027#include <utils/Mutex.h>
Romain Guyfe48f652010-11-11 15:36:56 -080028
Romain Guy253f2c22016-09-28 17:34:42 -070029#include "FloatColor.h"
30
Romain Guyc0ac1932010-07-19 18:43:02 -070031namespace android {
32namespace uirenderer {
33
Tom Hudson2dc236b2014-10-15 15:46:42 -040034class Texture;
35
Romain Guy6203f6c2011-08-01 18:56:21 -070036struct GradientCacheEntry {
37 GradientCacheEntry() {
38 count = 0;
Chris Craike84a2082014-12-22 14:28:49 -080039 colors = nullptr;
40 positions = nullptr;
Romain Guy6203f6c2011-08-01 18:56:21 -070041 }
42
Romain Guy059e12c2012-11-28 17:35:51 -080043 GradientCacheEntry(uint32_t* colors, float* positions, uint32_t count) {
Romain Guy42e1e0d2012-07-30 14:47:51 -070044 copy(colors, positions, count);
Romain Guy6203f6c2011-08-01 18:56:21 -070045 }
46
47 GradientCacheEntry(const GradientCacheEntry& entry) {
Chris Craik51d6a3d2014-12-22 17:16:56 -080048 copy(entry.colors.get(), entry.positions.get(), entry.count);
Romain Guye5df2312011-08-12 14:23:53 -070049 }
50
51 GradientCacheEntry& operator=(const GradientCacheEntry& entry) {
52 if (this != &entry) {
Chris Craik51d6a3d2014-12-22 17:16:56 -080053 copy(entry.colors.get(), entry.positions.get(), entry.count);
Romain Guye5df2312011-08-12 14:23:53 -070054 }
55
56 return *this;
Romain Guy6203f6c2011-08-01 18:56:21 -070057 }
58
Romain Guy059e12c2012-11-28 17:35:51 -080059 hash_t hash() const;
60
61 static int compare(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs);
62
John Reck1bcacfd2017-11-03 10:12:19 -070063 bool operator==(const GradientCacheEntry& other) const { return compare(*this, other) == 0; }
Romain Guy059e12c2012-11-28 17:35:51 -080064
John Reck1bcacfd2017-11-03 10:12:19 -070065 bool operator!=(const GradientCacheEntry& other) const { return compare(*this, other) != 0; }
Romain Guy6203f6c2011-08-01 18:56:21 -070066
Chris Craik51d6a3d2014-12-22 17:16:56 -080067 std::unique_ptr<uint32_t[]> colors;
68 std::unique_ptr<float[]> positions;
Romain Guy059e12c2012-11-28 17:35:51 -080069 uint32_t count;
Romain Guy6203f6c2011-08-01 18:56:21 -070070
Romain Guye5df2312011-08-12 14:23:53 -070071private:
Romain Guy059e12c2012-11-28 17:35:51 -080072 void copy(uint32_t* colors, float* positions, uint32_t count) {
Romain Guye5df2312011-08-12 14:23:53 -070073 this->count = count;
Chris Craik51d6a3d2014-12-22 17:16:56 -080074 this->colors.reset(new uint32_t[count]);
75 this->positions.reset(new float[count]);
Romain Guye5df2312011-08-12 14:23:53 -070076
Chris Craik51d6a3d2014-12-22 17:16:56 -080077 memcpy(this->colors.get(), colors, count * sizeof(uint32_t));
78 memcpy(this->positions.get(), positions, count * sizeof(float));
Romain Guye5df2312011-08-12 14:23:53 -070079 }
80
John Reck1bcacfd2017-11-03 10:12:19 -070081}; // GradientCacheEntry
Romain Guy6203f6c2011-08-01 18:56:21 -070082
Romain Guy059e12c2012-11-28 17:35:51 -080083// Caching support
84
85inline int strictly_order_type(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) {
86 return GradientCacheEntry::compare(lhs, rhs) < 0;
87}
88
89inline int compare_type(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) {
90 return GradientCacheEntry::compare(lhs, rhs);
91}
92
93inline hash_t hash_type(const GradientCacheEntry& entry) {
94 return entry.hash();
95}
96
Romain Guyc0ac1932010-07-19 18:43:02 -070097/**
98 * A simple LRU gradient cache. The cache has a maximum size expressed in bytes.
99 * Any texture added to the cache causing the cache to grow beyond the maximum
100 * allowed size will also cause the oldest texture to be kicked out.
101 */
John Reck1bcacfd2017-11-03 10:12:19 -0700102class GradientCache : public OnEntryRemoved<GradientCacheEntry, Texture*> {
Romain Guyc0ac1932010-07-19 18:43:02 -0700103public:
John Reck8dc02f92017-07-17 09:55:02 -0700104 explicit GradientCache(const Extensions& extensions);
Romain Guyc0ac1932010-07-19 18:43:02 -0700105 ~GradientCache();
106
107 /**
108 * Used as a callback when an entry is removed from the cache.
109 * Do not invoke directly.
110 */
Chris Craike84a2082014-12-22 14:28:49 -0800111 void operator()(GradientCacheEntry& shader, Texture*& texture) override;
Romain Guyc0ac1932010-07-19 18:43:02 -0700112
113 /**
Romain Guyc0ac1932010-07-19 18:43:02 -0700114 * Returns the texture associated with the specified shader.
115 */
Romain Guy42e1e0d2012-07-30 14:47:51 -0700116 Texture* get(uint32_t* colors, float* positions, int count);
117
Romain Guyfe48f652010-11-11 15:36:56 -0800118 /**
Romain Guyc0ac1932010-07-19 18:43:02 -0700119 * Clears the cache. This causes all textures to be deleted.
120 */
121 void clear();
122
123 /**
Romain Guyc0ac1932010-07-19 18:43:02 -0700124 * Returns the maximum size of the cache in bytes.
125 */
126 uint32_t getMaxSize();
127 /**
128 * Returns the current size of the cache in bytes.
129 */
130 uint32_t getSize();
131
132private:
Romain Guy6203f6c2011-08-01 18:56:21 -0700133 /**
134 * Adds a new linear gradient to the cache. The generated texture is
135 * returned.
136 */
John Reck1bcacfd2017-11-03 10:12:19 -0700137 Texture* addLinearGradient(GradientCacheEntry& gradient, uint32_t* colors, float* positions,
138 int count);
Romain Guy6203f6c2011-08-01 18:56:21 -0700139
John Reck1bcacfd2017-11-03 10:12:19 -0700140 void generateTexture(uint32_t* colors, float* positions, const uint32_t width,
141 const uint32_t height, Texture* texture);
Romain Guy42e1e0d2012-07-30 14:47:51 -0700142
143 struct GradientInfo {
144 uint32_t width;
145 bool hasAlpha;
146 };
147
148 void getGradientInfo(const uint32_t* colors, const int count, GradientInfo& info);
Romain Guyc0ac1932010-07-19 18:43:02 -0700149
Romain Guyb4880042013-04-05 11:17:55 -0700150 size_t bytesPerPixel() const;
Romain Guy253f2c22016-09-28 17:34:42 -0700151 size_t sourceBytesPerPixel() const;
Romain Guyb4880042013-04-05 11:17:55 -0700152
Romain Guy8762e332016-10-12 12:14:07 -0700153 typedef void (GradientCache::*ChannelMixer)(const FloatColor& start, const FloatColor& end,
John Reck1bcacfd2017-11-03 10:12:19 -0700154 float amount, uint8_t*& dst) const;
Romain Guyb4880042013-04-05 11:17:55 -0700155
John Reck1bcacfd2017-11-03 10:12:19 -0700156 void mixBytes(const FloatColor& start, const FloatColor& end, float amount,
157 uint8_t*& dst) const;
158 void mixFloats(const FloatColor& start, const FloatColor& end, float amount,
159 uint8_t*& dst) const;
Romain Guyb4880042013-04-05 11:17:55 -0700160
Romain Guy059e12c2012-11-28 17:35:51 -0800161 LruCache<GradientCacheEntry, Texture*> mCache;
Romain Guyc0ac1932010-07-19 18:43:02 -0700162
163 uint32_t mSize;
Chris Craik48a8f432016-02-05 15:59:29 -0800164 const uint32_t mMaxSize;
Romain Guya2341a92010-09-08 18:04:33 -0700165
Romain Guy8dcfd5e2012-07-20 11:36:03 -0700166 GLint mMaxTextureSize;
Romain Guyb4880042013-04-05 11:17:55 -0700167 bool mUseFloatTexture;
168 bool mHasNpot;
Romain Guyefb4b062017-02-27 11:00:04 -0800169 bool mHasLinearBlending;
Romain Guy8dcfd5e2012-07-20 11:36:03 -0700170
Romain Guya2341a92010-09-08 18:04:33 -0700171 mutable Mutex mLock;
John Reck1bcacfd2017-11-03 10:12:19 -0700172}; // class GradientCache
Romain Guyc0ac1932010-07-19 18:43:02 -0700173
John Reck1bcacfd2017-11-03 10:12:19 -0700174}; // namespace uirenderer
175}; // namespace android
Romain Guyc0ac1932010-07-19 18:43:02 -0700176
John Reck1bcacfd2017-11-03 10:12:19 -0700177#endif // ANDROID_HWUI_GRADIENT_CACHE_H