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 | |
Derek Sollenberger | ca79cf6 | 2012-08-14 16:44:52 -0400 | [diff] [blame] | 17 | #include <SkGlyph.h> |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 18 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 19 | #include "CacheTexture.h" |
Tom Hudson | 2dc236b | 2014-10-15 15:46:42 -0400 | [diff] [blame] | 20 | #include "FontUtil.h" |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 21 | #include "../Caches.h" |
Romain Guy | 0908764 | 2013-04-04 12:27:54 -0700 | [diff] [blame] | 22 | #include "../Debug.h" |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 23 | #include "../Extensions.h" |
| 24 | #include "../PixelBuffer.h" |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 25 | |
| 26 | namespace android { |
| 27 | namespace uirenderer { |
| 28 | |
| 29 | /////////////////////////////////////////////////////////////////////////////// |
| 30 | // CacheBlock |
| 31 | /////////////////////////////////////////////////////////////////////////////// |
| 32 | |
| 33 | /** |
| 34 | * Insert new block into existing linked list of blocks. Blocks are sorted in increasing-width |
| 35 | * order, except for the final block (the remainder space at the right, since we fill from the |
| 36 | * left). |
| 37 | */ |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 38 | CacheBlock* CacheBlock::insertBlock(CacheBlock* head, CacheBlock* newBlock) { |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 39 | #if DEBUG_FONT_RENDERER |
| 40 | ALOGD("insertBlock: this, x, y, w, h = %p, %d, %d, %d, %d", |
| 41 | newBlock, newBlock->mX, newBlock->mY, |
| 42 | newBlock->mWidth, newBlock->mHeight); |
| 43 | #endif |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 44 | |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 45 | CacheBlock* currBlock = head; |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 46 | CacheBlock* prevBlock = nullptr; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 47 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 48 | while (currBlock && currBlock->mY != TEXTURE_BORDER_SIZE) { |
| 49 | if (newBlock->mWidth < currBlock->mWidth) { |
| 50 | newBlock->mNext = currBlock; |
| 51 | newBlock->mPrev = prevBlock; |
| 52 | currBlock->mPrev = newBlock; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 53 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 54 | if (prevBlock) { |
| 55 | prevBlock->mNext = newBlock; |
| 56 | return head; |
| 57 | } else { |
| 58 | return newBlock; |
| 59 | } |
| 60 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 61 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 62 | prevBlock = currBlock; |
| 63 | currBlock = currBlock->mNext; |
| 64 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 65 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 66 | // new block larger than all others - insert at end (but before the remainder space, if there) |
| 67 | newBlock->mNext = currBlock; |
| 68 | newBlock->mPrev = prevBlock; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 69 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 70 | if (currBlock) { |
| 71 | currBlock->mPrev = newBlock; |
| 72 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 73 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 74 | if (prevBlock) { |
| 75 | prevBlock->mNext = newBlock; |
| 76 | return head; |
| 77 | } else { |
| 78 | return newBlock; |
| 79 | } |
| 80 | } |
| 81 | |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 82 | CacheBlock* CacheBlock::removeBlock(CacheBlock* head, CacheBlock* blockToRemove) { |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 83 | #if DEBUG_FONT_RENDERER |
| 84 | ALOGD("removeBlock: this, x, y, w, h = %p, %d, %d, %d, %d", |
| 85 | blockToRemove, blockToRemove->mX, blockToRemove->mY, |
| 86 | blockToRemove->mWidth, blockToRemove->mHeight); |
| 87 | #endif |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 88 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 89 | CacheBlock* newHead = head; |
| 90 | CacheBlock* nextBlock = blockToRemove->mNext; |
| 91 | CacheBlock* prevBlock = blockToRemove->mPrev; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 92 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 93 | if (prevBlock) { |
| 94 | prevBlock->mNext = nextBlock; |
| 95 | } else { |
| 96 | newHead = nextBlock; |
| 97 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 98 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 99 | if (nextBlock) { |
| 100 | nextBlock->mPrev = prevBlock; |
| 101 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 102 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 103 | delete blockToRemove; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 104 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 105 | return newHead; |
| 106 | } |
| 107 | |
| 108 | /////////////////////////////////////////////////////////////////////////////// |
| 109 | // CacheTexture |
| 110 | /////////////////////////////////////////////////////////////////////////////// |
| 111 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 112 | CacheTexture::CacheTexture(uint16_t width, uint16_t height, GLenum format, uint32_t maxQuadCount) |
| 113 | : mTexture(Caches::getInstance()) |
| 114 | , mFormat(format) |
| 115 | , mMaxQuadCount(maxQuadCount) |
| 116 | , mCaches(Caches::getInstance()) { |
| 117 | mTexture.width = width; |
| 118 | mTexture.height = height; |
| 119 | mTexture.blend = true; |
| 120 | |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 121 | mCacheBlocks = new CacheBlock(TEXTURE_BORDER_SIZE, TEXTURE_BORDER_SIZE, |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 122 | getWidth() - TEXTURE_BORDER_SIZE, getHeight() - TEXTURE_BORDER_SIZE); |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 123 | |
| 124 | // OpenGL ES 3.0+ lets us specify the row length for unpack operations such |
| 125 | // as glTexSubImage2D(). This allows us to upload a sub-rectangle of a texture. |
| 126 | // With OpenGL ES 2.0 we have to upload entire stripes instead. |
Chris Craik | 117bdbc | 2015-02-05 10:12:38 -0800 | [diff] [blame] | 127 | mHasUnpackRowLength = mCaches.extensions().hasUnpackRowLength(); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | CacheTexture::~CacheTexture() { |
| 131 | releaseMesh(); |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 132 | releasePixelBuffer(); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 133 | reset(); |
| 134 | } |
| 135 | |
| 136 | void CacheTexture::reset() { |
| 137 | // Delete existing cache blocks |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 138 | while (mCacheBlocks != nullptr) { |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 139 | CacheBlock* tmpBlock = mCacheBlocks; |
| 140 | mCacheBlocks = mCacheBlocks->mNext; |
| 141 | delete tmpBlock; |
| 142 | } |
| 143 | mNumGlyphs = 0; |
| 144 | mCurrentQuad = 0; |
| 145 | } |
| 146 | |
| 147 | void CacheTexture::init() { |
| 148 | // reset, then create a new remainder space to start again |
| 149 | reset(); |
| 150 | mCacheBlocks = new CacheBlock(TEXTURE_BORDER_SIZE, TEXTURE_BORDER_SIZE, |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 151 | getWidth() - TEXTURE_BORDER_SIZE, getHeight() - TEXTURE_BORDER_SIZE); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | void CacheTexture::releaseMesh() { |
| 155 | delete[] mMesh; |
| 156 | } |
| 157 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 158 | void CacheTexture::releasePixelBuffer() { |
| 159 | if (mPixelBuffer) { |
| 160 | delete mPixelBuffer; |
| 161 | mPixelBuffer = nullptr; |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 162 | } |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 163 | if (mTexture.id) { |
| 164 | mCaches.textureState().deleteTexture(mTexture.id); |
| 165 | mTexture.id = 0; |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 166 | } |
| 167 | mDirty = false; |
| 168 | mCurrentQuad = 0; |
| 169 | } |
| 170 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 171 | void CacheTexture::setLinearFiltering(bool linearFiltering) { |
| 172 | mTexture.setFilter(linearFiltering ? GL_LINEAR : GL_NEAREST); |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 175 | void CacheTexture::allocateMesh() { |
| 176 | if (!mMesh) { |
| 177 | mMesh = new TextureVertex[mMaxQuadCount * 4]; |
| 178 | } |
| 179 | } |
| 180 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 181 | void CacheTexture::allocatePixelBuffer() { |
| 182 | if (!mPixelBuffer) { |
| 183 | mPixelBuffer = PixelBuffer::create(mFormat, getWidth(), getHeight()); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 186 | if (!mTexture.id) { |
| 187 | glGenTextures(1, &mTexture.id); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 188 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 189 | mCaches.textureState().bindTexture(mTexture.id); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 190 | glPixelStorei(GL_UNPACK_ALIGNMENT, 1); |
| 191 | // Initialize texture dimensions |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 192 | glTexImage2D(GL_TEXTURE_2D, 0, mFormat, getWidth(), getHeight(), 0, |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 193 | mFormat, GL_UNSIGNED_BYTE, nullptr); |
Romain Guy | 661a87e | 2013-03-19 15:24:36 -0700 | [diff] [blame] | 194 | |
| 195 | const GLenum filtering = getLinearFiltering() ? GL_LINEAR : GL_NEAREST; |
| 196 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, filtering); |
| 197 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, filtering); |
| 198 | |
| 199 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
| 200 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); |
| 201 | } |
| 202 | } |
| 203 | |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 204 | bool CacheTexture::upload() { |
| 205 | const Rect& dirtyRect = mDirtyRect; |
| 206 | |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 207 | uint32_t x = mHasUnpackRowLength ? dirtyRect.left : 0; |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 208 | uint32_t y = dirtyRect.top; |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 209 | uint32_t width = mHasUnpackRowLength ? dirtyRect.getWidth() : getWidth(); |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 210 | uint32_t height = dirtyRect.getHeight(); |
| 211 | |
| 212 | // The unpack row length only needs to be specified when a new |
| 213 | // texture is bound |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 214 | if (mHasUnpackRowLength) { |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 215 | glPixelStorei(GL_UNPACK_ROW_LENGTH, getWidth()); |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 218 | mPixelBuffer->upload(x, y, width, height); |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 219 | setDirty(false); |
| 220 | |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 221 | return mHasUnpackRowLength; |
Romain Guy | cf51a41 | 2013-04-08 19:40:31 -0700 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | void CacheTexture::setDirty(bool dirty) { |
| 225 | mDirty = dirty; |
| 226 | if (!dirty) { |
| 227 | mDirtyRect.setEmpty(); |
| 228 | } |
| 229 | } |
| 230 | |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 231 | bool CacheTexture::fitBitmap(const SkGlyph& glyph, uint32_t* retOriginX, uint32_t* retOriginY) { |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 232 | switch (glyph.fMaskFormat) { |
| 233 | case SkMask::kA8_Format: |
Victoria Lease | 723b2fe | 2013-08-12 14:38:44 -0700 | [diff] [blame] | 234 | case SkMask::kBW_Format: |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 235 | if (mFormat != GL_ALPHA) { |
| 236 | #if DEBUG_FONT_RENDERER |
Victoria Lease | 723b2fe | 2013-08-12 14:38:44 -0700 | [diff] [blame] | 237 | ALOGD("fitBitmap: texture format %x is inappropriate for monochromatic glyphs", |
| 238 | mFormat); |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 239 | #endif |
| 240 | return false; |
| 241 | } |
| 242 | break; |
| 243 | case SkMask::kARGB32_Format: |
| 244 | if (mFormat != GL_RGBA) { |
| 245 | #if DEBUG_FONT_RENDERER |
Victoria Lease | 723b2fe | 2013-08-12 14:38:44 -0700 | [diff] [blame] | 246 | ALOGD("fitBitmap: texture format %x is inappropriate for colour glyphs", mFormat); |
Victoria Lease | 1e54681 | 2013-06-25 14:25:17 -0700 | [diff] [blame] | 247 | #endif |
| 248 | return false; |
| 249 | } |
| 250 | break; |
| 251 | default: |
| 252 | #if DEBUG_FONT_RENDERER |
| 253 | ALOGD("fitBitmap: unknown glyph format %x encountered", glyph.fMaskFormat); |
| 254 | #endif |
| 255 | return false; |
| 256 | } |
| 257 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 258 | if (glyph.fHeight + TEXTURE_BORDER_SIZE * 2 > getHeight()) { |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 259 | return false; |
| 260 | } |
| 261 | |
| 262 | uint16_t glyphW = glyph.fWidth + TEXTURE_BORDER_SIZE; |
| 263 | uint16_t glyphH = glyph.fHeight + TEXTURE_BORDER_SIZE; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 264 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 265 | // roundedUpW equals glyphW to the next multiple of CACHE_BLOCK_ROUNDING_SIZE. |
| 266 | // This columns for glyphs that are close but not necessarily exactly the same size. It trades |
| 267 | // off the loss of a few pixels for some glyphs against the ability to store more glyphs |
| 268 | // of varying sizes in one block. |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 269 | uint16_t roundedUpW = (glyphW + CACHE_BLOCK_ROUNDING_SIZE - 1) & -CACHE_BLOCK_ROUNDING_SIZE; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 270 | |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 271 | CacheBlock* cacheBlock = mCacheBlocks; |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 272 | while (cacheBlock) { |
| 273 | // Store glyph in this block iff: it fits the block's remaining space and: |
| 274 | // it's the remainder space (mY == 0) or there's only enough height for this one glyph |
| 275 | // or it's within ROUNDING_SIZE of the block width |
| 276 | if (roundedUpW <= cacheBlock->mWidth && glyphH <= cacheBlock->mHeight && |
| 277 | (cacheBlock->mY == TEXTURE_BORDER_SIZE || |
| 278 | (cacheBlock->mWidth - roundedUpW < CACHE_BLOCK_ROUNDING_SIZE))) { |
| 279 | if (cacheBlock->mHeight - glyphH < glyphH) { |
| 280 | // Only enough space for this glyph - don't bother rounding up the width |
| 281 | roundedUpW = glyphW; |
| 282 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 283 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 284 | *retOriginX = cacheBlock->mX; |
| 285 | *retOriginY = cacheBlock->mY; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 286 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 287 | // If this is the remainder space, create a new cache block for this column. Otherwise, |
| 288 | // adjust the info about this column. |
| 289 | if (cacheBlock->mY == TEXTURE_BORDER_SIZE) { |
| 290 | uint16_t oldX = cacheBlock->mX; |
| 291 | // Adjust remainder space dimensions |
| 292 | cacheBlock->mWidth -= roundedUpW; |
| 293 | cacheBlock->mX += roundedUpW; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 294 | |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 295 | if (getHeight() - glyphH >= glyphH) { |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 296 | // There's enough height left over to create a new CacheBlock |
Romain Guy | e43f785 | 2012-09-04 18:58:46 -0700 | [diff] [blame] | 297 | CacheBlock* newBlock = new CacheBlock(oldX, glyphH + TEXTURE_BORDER_SIZE, |
Chris Craik | e2bb380 | 2015-03-13 15:07:52 -0700 | [diff] [blame] | 298 | roundedUpW, getHeight() - glyphH - TEXTURE_BORDER_SIZE); |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 299 | #if DEBUG_FONT_RENDERER |
| 300 | ALOGD("fitBitmap: Created new block: this, x, y, w, h = %p, %d, %d, %d, %d", |
| 301 | newBlock, newBlock->mX, newBlock->mY, |
| 302 | newBlock->mWidth, newBlock->mHeight); |
| 303 | #endif |
| 304 | mCacheBlocks = CacheBlock::insertBlock(mCacheBlocks, newBlock); |
| 305 | } |
| 306 | } else { |
| 307 | // Insert into current column and adjust column dimensions |
| 308 | cacheBlock->mY += glyphH; |
| 309 | cacheBlock->mHeight -= glyphH; |
| 310 | #if DEBUG_FONT_RENDERER |
| 311 | ALOGD("fitBitmap: Added to existing block: this, x, y, w, h = %p, %d, %d, %d, %d", |
| 312 | cacheBlock, cacheBlock->mX, cacheBlock->mY, |
| 313 | cacheBlock->mWidth, cacheBlock->mHeight); |
| 314 | #endif |
| 315 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 316 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 317 | if (cacheBlock->mHeight < fmin(glyphH, glyphW)) { |
| 318 | // If remaining space in this block is too small to be useful, remove it |
| 319 | mCacheBlocks = CacheBlock::removeBlock(mCacheBlocks, cacheBlock); |
| 320 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 321 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 322 | mDirty = true; |
Chet Haase | b92d8f7 | 2012-09-21 08:40:46 -0700 | [diff] [blame] | 323 | const Rect r(*retOriginX - TEXTURE_BORDER_SIZE, *retOriginY - TEXTURE_BORDER_SIZE, |
| 324 | *retOriginX + glyphW, *retOriginY + glyphH); |
| 325 | mDirtyRect.unionWith(r); |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 326 | mNumGlyphs++; |
| 327 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 328 | #if DEBUG_FONT_RENDERER |
| 329 | ALOGD("fitBitmap: current block list:"); |
| 330 | mCacheBlocks->output(); |
| 331 | #endif |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame] | 332 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 333 | return true; |
| 334 | } |
| 335 | cacheBlock = cacheBlock->mNext; |
| 336 | } |
| 337 | #if DEBUG_FONT_RENDERER |
| 338 | ALOGD("fitBitmap: returning false for glyph of size %d, %d", glyphW, glyphH); |
| 339 | #endif |
| 340 | return false; |
| 341 | } |
| 342 | |
| 343 | }; // namespace uirenderer |
| 344 | }; // namespace android |