Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 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 | #ifndef ANDROID_HWUI_CACHE_TEXTURE_H |
| 18 | #define ANDROID_HWUI_CACHE_TEXTURE_H |
| 19 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 20 | #include "PixelBuffer.h" |
| 21 | #include "Rect.h" |
| 22 | #include "Texture.h" |
| 23 | #include "Vertex.h" |
| 24 | |
Romain Guy | 0908764 | 2013-04-04 12:27:54 -0700 | [diff] [blame] | 25 | #include <GLES3/gl3.h> |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 26 | #include <SkScalerContext.h> |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 27 | #include <utils/Log.h> |
| 28 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 29 | |
| 30 | namespace android { |
| 31 | namespace uirenderer { |
| 32 | |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 33 | class Caches; |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 34 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 35 | /** |
| 36 | * CacheBlock is a node in a linked list of current free space areas in a CacheTexture. |
| 37 | * Using CacheBlocks enables us to pack the cache from top to bottom as well as left to right. |
| 38 | * When we add a glyph to the cache, we see if it fits within one of the existing columns that |
| 39 | * have already been started (this is the case if the glyph fits vertically as well as |
| 40 | * horizontally, and if its width is sufficiently close to the column width to avoid |
| 41 | * sub-optimal packing of small glyphs into wide columns). If there is no column in which the |
| 42 | * glyph fits, we check the final node, which is the remaining space in the cache, creating |
| 43 | * a new column as appropriate. |
| 44 | * |
| 45 | * As columns fill up, we remove their CacheBlock from the list to avoid having to check |
| 46 | * small blocks in the future. |
| 47 | */ |
| 48 | struct CacheBlock { |
| 49 | uint16_t mX; |
| 50 | uint16_t mY; |
| 51 | uint16_t mWidth; |
| 52 | uint16_t mHeight; |
| 53 | CacheBlock* mNext; |
| 54 | CacheBlock* mPrev; |
| 55 | |
Chris Craik | e63f7c62 | 2013-10-17 10:30:55 -0700 | [diff] [blame] | 56 | CacheBlock(uint16_t x, uint16_t y, uint16_t width, uint16_t height): |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 57 | mX(x), mY(y), mWidth(width), mHeight(height), mNext(nullptr), mPrev(nullptr) { |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 60 | static CacheBlock* insertBlock(CacheBlock* head, CacheBlock* newBlock); |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 61 | static CacheBlock* removeBlock(CacheBlock* head, CacheBlock* blockToRemove); |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 62 | |
| 63 | void output() { |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 64 | CacheBlock* currBlock = this; |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 65 | while (currBlock) { |
| 66 | ALOGD("Block: this, x, y, w, h = %p, %d, %d, %d, %d", |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 67 | currBlock, currBlock->mX, currBlock->mY, |
| 68 | currBlock->mWidth, currBlock->mHeight); |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 69 | currBlock = currBlock->mNext; |
| 70 | } |
| 71 | } |
| 72 | }; |
| 73 | |
| 74 | class CacheTexture { |
| 75 | public: |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 76 | CacheTexture(uint16_t width, uint16_t height, GLenum format, uint32_t maxQuadCount); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 77 | ~CacheTexture(); |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 78 | |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 79 | void reset(); |
| 80 | void init(); |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 81 | |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 82 | void releaseMesh(); |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 83 | void releasePixelBuffer(); |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 84 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 85 | void allocatePixelBuffer(); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 86 | void allocateMesh(); |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 87 | |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 88 | // Returns true if glPixelStorei(GL_UNPACK_ROW_LENGTH) must be reset |
| 89 | // This method will also call setDirty(false) |
| 90 | bool upload(); |
| 91 | |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 92 | bool fitBitmap(const SkGlyph& glyph, uint32_t* retOriginX, uint32_t* retOriginY); |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 93 | |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 94 | inline uint16_t getWidth() const { |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 95 | return mTexture.width; |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | inline uint16_t getHeight() const { |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 99 | return mTexture.height; |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 102 | inline GLenum getFormat() const { |
| 103 | return mFormat; |
| 104 | } |
| 105 | |
| 106 | inline uint32_t getOffset(uint16_t x, uint16_t y) const { |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 107 | return (y * getWidth() + x) * PixelBuffer::formatSize(mFormat); |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Chet Haase | b92d8f7 | 2012-09-21 08:40:46 -0700 | [diff] [blame] | 110 | inline const Rect* getDirtyRect() const { |
| 111 | return &mDirtyRect; |
| 112 | } |
| 113 | |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 114 | inline PixelBuffer* getPixelBuffer() const { |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 115 | return mPixelBuffer; |
| 116 | } |
| 117 | |
| 118 | Texture& getTexture() { |
| 119 | allocatePixelBuffer(); |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 120 | return mTexture; |
| 121 | } |
| 122 | |
Romain Guy | 574cf60 | 2012-09-23 14:45:31 -0700 | [diff] [blame] | 123 | GLuint getTextureId() { |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 124 | allocatePixelBuffer(); |
| 125 | return mTexture.id; |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | inline bool isDirty() const { |
| 129 | return mDirty; |
| 130 | } |
| 131 | |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 132 | inline bool getLinearFiltering() const { |
| 133 | return mLinearFiltering; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * This method assumes that the proper texture unit is active. |
| 138 | */ |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 139 | void setLinearFiltering(bool linearFiltering); |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 140 | |
| 141 | inline uint16_t getGlyphCount() const { |
| 142 | return mNumGlyphs; |
| 143 | } |
| 144 | |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 145 | TextureVertex* mesh() const { |
| 146 | return mMesh; |
| 147 | } |
| 148 | |
| 149 | uint32_t meshElementCount() const { |
| 150 | return mCurrentQuad * 6; |
| 151 | } |
| 152 | |
| 153 | uint16_t* indices() const { |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 154 | return (uint16_t*) nullptr; |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | void resetMesh() { |
| 158 | mCurrentQuad = 0; |
| 159 | } |
| 160 | |
| 161 | inline void addQuad(float x1, float y1, float u1, float v1, |
| 162 | float x2, float y2, float u2, float v2, |
| 163 | float x3, float y3, float u3, float v3, |
| 164 | float x4, float y4, float u4, float v4) { |
| 165 | TextureVertex* mesh = mMesh + mCurrentQuad * 4; |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 166 | TextureVertex::set(mesh++, x2, y2, u2, v2); |
| 167 | TextureVertex::set(mesh++, x3, y3, u3, v3); |
Romain Guy | 31e08e9 | 2013-06-18 15:53:53 -0700 | [diff] [blame] | 168 | TextureVertex::set(mesh++, x1, y1, u1, v1); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 169 | TextureVertex::set(mesh++, x4, y4, u4, v4); |
| 170 | mCurrentQuad++; |
| 171 | } |
| 172 | |
| 173 | bool canDraw() const { |
| 174 | return mCurrentQuad > 0; |
| 175 | } |
| 176 | |
| 177 | bool endOfMesh() const { |
| 178 | return mCurrentQuad == mMaxQuadCount; |
| 179 | } |
| 180 | |
Romain Guy | 8087246 | 2012-09-04 16:42:01 -0700 | [diff] [blame] | 181 | private: |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 182 | void setDirty(bool dirty); |
| 183 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 184 | PixelBuffer* mPixelBuffer = nullptr; |
| 185 | Texture mTexture; |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 186 | GLenum mFormat; |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 187 | bool mLinearFiltering = false; |
| 188 | bool mDirty = false; |
| 189 | uint16_t mNumGlyphs = 0; |
| 190 | TextureVertex* mMesh = nullptr; |
| 191 | uint32_t mCurrentQuad = 0; |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 192 | uint32_t mMaxQuadCount; |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 193 | Caches& mCaches; |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 194 | CacheBlock* mCacheBlocks; |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 195 | bool mHasUnpackRowLength; |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 196 | Rect mDirtyRect; |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 197 | }; |
| 198 | |
| 199 | }; // namespace uirenderer |
| 200 | }; // namespace android |
| 201 | |
| 202 | #endif // ANDROID_HWUI_CACHE_TEXTURE_H |