Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 1 | /* |
| 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 Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 17 | #ifndef ANDROID_HWUI_GRADIENT_CACHE_H |
| 18 | #define ANDROID_HWUI_GRADIENT_CACHE_H |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 19 | |
Chris Craik | 96a5c4c | 2015-01-27 15:46:35 -0800 | [diff] [blame] | 20 | #include <memory> |
| 21 | |
Romain Guy | b488004 | 2013-04-05 11:17:55 -0700 | [diff] [blame] | 22 | #include <GLES3/gl3.h> |
Romain Guy | 8dcfd5e | 2012-07-20 11:36:03 -0700 | [diff] [blame] | 23 | |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 24 | #include <SkShader.h> |
| 25 | |
Romain Guy | 059e12c | 2012-11-28 17:35:51 -0800 | [diff] [blame] | 26 | #include <utils/LruCache.h> |
Derek Sollenberger | 029f643 | 2012-03-05 16:48:32 -0500 | [diff] [blame] | 27 | #include <utils/Mutex.h> |
Romain Guy | fe48f65 | 2010-11-11 15:36:56 -0800 | [diff] [blame] | 28 | |
Romain Guy | 253f2c2 | 2016-09-28 17:34:42 -0700 | [diff] [blame] | 29 | #include "FloatColor.h" |
| 30 | |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 31 | namespace android { |
| 32 | namespace uirenderer { |
| 33 | |
Tom Hudson | 2dc236b | 2014-10-15 15:46:42 -0400 | [diff] [blame] | 34 | class Texture; |
| 35 | |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 36 | struct GradientCacheEntry { |
| 37 | GradientCacheEntry() { |
| 38 | count = 0; |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 39 | colors = nullptr; |
| 40 | positions = nullptr; |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 41 | } |
| 42 | |
Romain Guy | 059e12c | 2012-11-28 17:35:51 -0800 | [diff] [blame] | 43 | GradientCacheEntry(uint32_t* colors, float* positions, uint32_t count) { |
Romain Guy | 42e1e0d | 2012-07-30 14:47:51 -0700 | [diff] [blame] | 44 | copy(colors, positions, count); |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | GradientCacheEntry(const GradientCacheEntry& entry) { |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 48 | copy(entry.colors.get(), entry.positions.get(), entry.count); |
Romain Guy | e5df231 | 2011-08-12 14:23:53 -0700 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | GradientCacheEntry& operator=(const GradientCacheEntry& entry) { |
| 52 | if (this != &entry) { |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 53 | copy(entry.colors.get(), entry.positions.get(), entry.count); |
Romain Guy | e5df231 | 2011-08-12 14:23:53 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | return *this; |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Romain Guy | 059e12c | 2012-11-28 17:35:51 -0800 | [diff] [blame] | 59 | hash_t hash() const; |
| 60 | |
| 61 | static int compare(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs); |
| 62 | |
| 63 | bool operator==(const GradientCacheEntry& other) const { |
| 64 | return compare(*this, other) == 0; |
| 65 | } |
| 66 | |
| 67 | bool operator!=(const GradientCacheEntry& other) const { |
| 68 | return compare(*this, other) != 0; |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 71 | std::unique_ptr<uint32_t[]> colors; |
| 72 | std::unique_ptr<float[]> positions; |
Romain Guy | 059e12c | 2012-11-28 17:35:51 -0800 | [diff] [blame] | 73 | uint32_t count; |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 74 | |
Romain Guy | e5df231 | 2011-08-12 14:23:53 -0700 | [diff] [blame] | 75 | private: |
Romain Guy | 059e12c | 2012-11-28 17:35:51 -0800 | [diff] [blame] | 76 | void copy(uint32_t* colors, float* positions, uint32_t count) { |
Romain Guy | e5df231 | 2011-08-12 14:23:53 -0700 | [diff] [blame] | 77 | this->count = count; |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 78 | this->colors.reset(new uint32_t[count]); |
| 79 | this->positions.reset(new float[count]); |
Romain Guy | e5df231 | 2011-08-12 14:23:53 -0700 | [diff] [blame] | 80 | |
Chris Craik | 51d6a3d | 2014-12-22 17:16:56 -0800 | [diff] [blame] | 81 | memcpy(this->colors.get(), colors, count * sizeof(uint32_t)); |
| 82 | memcpy(this->positions.get(), positions, count * sizeof(float)); |
Romain Guy | e5df231 | 2011-08-12 14:23:53 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 85 | }; // GradientCacheEntry |
| 86 | |
Romain Guy | 059e12c | 2012-11-28 17:35:51 -0800 | [diff] [blame] | 87 | // Caching support |
| 88 | |
| 89 | inline int strictly_order_type(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) { |
| 90 | return GradientCacheEntry::compare(lhs, rhs) < 0; |
| 91 | } |
| 92 | |
| 93 | inline int compare_type(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) { |
| 94 | return GradientCacheEntry::compare(lhs, rhs); |
| 95 | } |
| 96 | |
| 97 | inline hash_t hash_type(const GradientCacheEntry& entry) { |
| 98 | return entry.hash(); |
| 99 | } |
| 100 | |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 101 | /** |
| 102 | * A simple LRU gradient cache. The cache has a maximum size expressed in bytes. |
| 103 | * Any texture added to the cache causing the cache to grow beyond the maximum |
| 104 | * allowed size will also cause the oldest texture to be kicked out. |
| 105 | */ |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 106 | class GradientCache: public OnEntryRemoved<GradientCacheEntry, Texture*> { |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 107 | public: |
Chih-Hung Hsieh | faecb78 | 2016-07-21 11:23:06 -0700 | [diff] [blame] | 108 | explicit GradientCache(Extensions& extensions); |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 109 | ~GradientCache(); |
| 110 | |
| 111 | /** |
| 112 | * Used as a callback when an entry is removed from the cache. |
| 113 | * Do not invoke directly. |
| 114 | */ |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 115 | void operator()(GradientCacheEntry& shader, Texture*& texture) override; |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 116 | |
| 117 | /** |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 118 | * Returns the texture associated with the specified shader. |
| 119 | */ |
Romain Guy | 42e1e0d | 2012-07-30 14:47:51 -0700 | [diff] [blame] | 120 | Texture* get(uint32_t* colors, float* positions, int count); |
| 121 | |
Romain Guy | fe48f65 | 2010-11-11 15:36:56 -0800 | [diff] [blame] | 122 | /** |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 123 | * Clears the cache. This causes all textures to be deleted. |
| 124 | */ |
| 125 | void clear(); |
| 126 | |
| 127 | /** |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 128 | * Returns the maximum size of the cache in bytes. |
| 129 | */ |
| 130 | uint32_t getMaxSize(); |
| 131 | /** |
| 132 | * Returns the current size of the cache in bytes. |
| 133 | */ |
| 134 | uint32_t getSize(); |
| 135 | |
| 136 | private: |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 137 | /** |
| 138 | * Adds a new linear gradient to the cache. The generated texture is |
| 139 | * returned. |
| 140 | */ |
| 141 | Texture* addLinearGradient(GradientCacheEntry& gradient, |
Romain Guy | 42e1e0d | 2012-07-30 14:47:51 -0700 | [diff] [blame] | 142 | uint32_t* colors, float* positions, int count); |
Romain Guy | 6203f6c | 2011-08-01 18:56:21 -0700 | [diff] [blame] | 143 | |
John Reck | 38e0c32 | 2015-11-10 12:19:17 -0800 | [diff] [blame] | 144 | void generateTexture(uint32_t* colors, float* positions, |
| 145 | const uint32_t width, const uint32_t height, Texture* texture); |
Romain Guy | 42e1e0d | 2012-07-30 14:47:51 -0700 | [diff] [blame] | 146 | |
| 147 | struct GradientInfo { |
| 148 | uint32_t width; |
| 149 | bool hasAlpha; |
| 150 | }; |
| 151 | |
| 152 | void getGradientInfo(const uint32_t* colors, const int count, GradientInfo& info); |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 153 | |
Romain Guy | b488004 | 2013-04-05 11:17:55 -0700 | [diff] [blame] | 154 | size_t bytesPerPixel() const; |
Romain Guy | 253f2c2 | 2016-09-28 17:34:42 -0700 | [diff] [blame] | 155 | size_t sourceBytesPerPixel() const; |
Romain Guy | b488004 | 2013-04-05 11:17:55 -0700 | [diff] [blame] | 156 | |
Romain Guy | 8762e33 | 2016-10-12 12:14:07 -0700 | [diff] [blame] | 157 | typedef void (GradientCache::*ChannelMixer)(const FloatColor& start, const FloatColor& end, |
Romain Guy | b488004 | 2013-04-05 11:17:55 -0700 | [diff] [blame] | 158 | float amount, uint8_t*& dst) const; |
| 159 | |
Romain Guy | 8762e33 | 2016-10-12 12:14:07 -0700 | [diff] [blame] | 160 | void mixBytes(const FloatColor& start, const FloatColor& end, |
| 161 | float amount, uint8_t*& dst) const; |
| 162 | void mixFloats(const FloatColor& start, const FloatColor& end, |
| 163 | float amount, uint8_t*& dst) const; |
Romain Guy | b488004 | 2013-04-05 11:17:55 -0700 | [diff] [blame] | 164 | |
Romain Guy | 059e12c | 2012-11-28 17:35:51 -0800 | [diff] [blame] | 165 | LruCache<GradientCacheEntry, Texture*> mCache; |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 166 | |
| 167 | uint32_t mSize; |
Chris Craik | 48a8f43 | 2016-02-05 15:59:29 -0800 | [diff] [blame] | 168 | const uint32_t mMaxSize; |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 169 | |
Romain Guy | 8dcfd5e | 2012-07-20 11:36:03 -0700 | [diff] [blame] | 170 | GLint mMaxTextureSize; |
Romain Guy | b488004 | 2013-04-05 11:17:55 -0700 | [diff] [blame] | 171 | bool mUseFloatTexture; |
| 172 | bool mHasNpot; |
Romain Guy | 253f2c2 | 2016-09-28 17:34:42 -0700 | [diff] [blame] | 173 | bool mHasSRGB; |
Romain Guy | 8dcfd5e | 2012-07-20 11:36:03 -0700 | [diff] [blame] | 174 | |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 175 | mutable Mutex mLock; |
Romain Guy | c0ac193 | 2010-07-19 18:43:02 -0700 | [diff] [blame] | 176 | }; // class GradientCache |
| 177 | |
| 178 | }; // namespace uirenderer |
| 179 | }; // namespace android |
| 180 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 181 | #endif // ANDROID_HWUI_GRADIENT_CACHE_H |