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 | #include <utils/Log.h> |
| 18 | |
| 19 | #include "Debug.h" |
| 20 | #include "CacheTexture.h" |
| 21 | |
| 22 | namespace android { |
| 23 | namespace uirenderer { |
| 24 | |
| 25 | /////////////////////////////////////////////////////////////////////////////// |
| 26 | // CacheBlock |
| 27 | /////////////////////////////////////////////////////////////////////////////// |
| 28 | |
| 29 | /** |
| 30 | * Insert new block into existing linked list of blocks. Blocks are sorted in increasing-width |
| 31 | * order, except for the final block (the remainder space at the right, since we fill from the |
| 32 | * left). |
| 33 | */ |
| 34 | CacheBlock* CacheBlock::insertBlock(CacheBlock* head, CacheBlock *newBlock) { |
| 35 | #if DEBUG_FONT_RENDERER |
| 36 | ALOGD("insertBlock: this, x, y, w, h = %p, %d, %d, %d, %d", |
| 37 | newBlock, newBlock->mX, newBlock->mY, |
| 38 | newBlock->mWidth, newBlock->mHeight); |
| 39 | #endif |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 40 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 41 | CacheBlock *currBlock = head; |
| 42 | CacheBlock *prevBlock = NULL; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 43 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 44 | while (currBlock && currBlock->mY != TEXTURE_BORDER_SIZE) { |
| 45 | if (newBlock->mWidth < currBlock->mWidth) { |
| 46 | newBlock->mNext = currBlock; |
| 47 | newBlock->mPrev = prevBlock; |
| 48 | currBlock->mPrev = newBlock; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 49 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 50 | if (prevBlock) { |
| 51 | prevBlock->mNext = newBlock; |
| 52 | return head; |
| 53 | } else { |
| 54 | return newBlock; |
| 55 | } |
| 56 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 57 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 58 | prevBlock = currBlock; |
| 59 | currBlock = currBlock->mNext; |
| 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 | // new block larger than all others - insert at end (but before the remainder space, if there) |
| 63 | newBlock->mNext = currBlock; |
| 64 | newBlock->mPrev = prevBlock; |
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 | if (currBlock) { |
| 67 | currBlock->mPrev = newBlock; |
| 68 | } |
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 (prevBlock) { |
| 71 | prevBlock->mNext = newBlock; |
| 72 | return head; |
| 73 | } else { |
| 74 | return newBlock; |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | CacheBlock* CacheBlock::removeBlock(CacheBlock* head, CacheBlock *blockToRemove) { |
| 79 | #if DEBUG_FONT_RENDERER |
| 80 | ALOGD("removeBlock: this, x, y, w, h = %p, %d, %d, %d, %d", |
| 81 | blockToRemove, blockToRemove->mX, blockToRemove->mY, |
| 82 | blockToRemove->mWidth, blockToRemove->mHeight); |
| 83 | #endif |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 84 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 85 | CacheBlock* newHead = head; |
| 86 | CacheBlock* nextBlock = blockToRemove->mNext; |
| 87 | CacheBlock* prevBlock = blockToRemove->mPrev; |
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 | if (prevBlock) { |
| 90 | prevBlock->mNext = nextBlock; |
| 91 | } else { |
| 92 | newHead = nextBlock; |
| 93 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 94 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 95 | if (nextBlock) { |
| 96 | nextBlock->mPrev = prevBlock; |
| 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 | delete blockToRemove; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 100 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 101 | return newHead; |
| 102 | } |
| 103 | |
| 104 | /////////////////////////////////////////////////////////////////////////////// |
| 105 | // CacheTexture |
| 106 | /////////////////////////////////////////////////////////////////////////////// |
| 107 | |
| 108 | bool CacheTexture::fitBitmap(const SkGlyph& glyph, uint32_t *retOriginX, uint32_t *retOriginY) { |
| 109 | if (glyph.fHeight + TEXTURE_BORDER_SIZE > mHeight) { |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 | uint16_t glyphW = glyph.fWidth + TEXTURE_BORDER_SIZE; |
| 114 | uint16_t glyphH = glyph.fHeight + TEXTURE_BORDER_SIZE; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 115 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 116 | // roundedUpW equals glyphW to the next multiple of CACHE_BLOCK_ROUNDING_SIZE. |
| 117 | // This columns for glyphs that are close but not necessarily exactly the same size. It trades |
| 118 | // off the loss of a few pixels for some glyphs against the ability to store more glyphs |
| 119 | // of varying sizes in one block. |
| 120 | uint16_t roundedUpW = |
| 121 | (glyphW + CACHE_BLOCK_ROUNDING_SIZE - 1) & -CACHE_BLOCK_ROUNDING_SIZE; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 122 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 123 | CacheBlock *cacheBlock = mCacheBlocks; |
| 124 | while (cacheBlock) { |
| 125 | // Store glyph in this block iff: it fits the block's remaining space and: |
| 126 | // it's the remainder space (mY == 0) or there's only enough height for this one glyph |
| 127 | // or it's within ROUNDING_SIZE of the block width |
| 128 | if (roundedUpW <= cacheBlock->mWidth && glyphH <= cacheBlock->mHeight && |
| 129 | (cacheBlock->mY == TEXTURE_BORDER_SIZE || |
| 130 | (cacheBlock->mWidth - roundedUpW < CACHE_BLOCK_ROUNDING_SIZE))) { |
| 131 | if (cacheBlock->mHeight - glyphH < glyphH) { |
| 132 | // Only enough space for this glyph - don't bother rounding up the width |
| 133 | roundedUpW = glyphW; |
| 134 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 135 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 136 | *retOriginX = cacheBlock->mX; |
| 137 | *retOriginY = cacheBlock->mY; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 138 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 139 | // If this is the remainder space, create a new cache block for this column. Otherwise, |
| 140 | // adjust the info about this column. |
| 141 | if (cacheBlock->mY == TEXTURE_BORDER_SIZE) { |
| 142 | uint16_t oldX = cacheBlock->mX; |
| 143 | // Adjust remainder space dimensions |
| 144 | cacheBlock->mWidth -= roundedUpW; |
| 145 | cacheBlock->mX += roundedUpW; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 146 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 147 | if (mHeight - glyphH >= glyphH) { |
| 148 | // There's enough height left over to create a new CacheBlock |
| 149 | CacheBlock *newBlock = new CacheBlock(oldX, glyphH + TEXTURE_BORDER_SIZE, |
| 150 | roundedUpW, mHeight - glyphH - TEXTURE_BORDER_SIZE); |
| 151 | #if DEBUG_FONT_RENDERER |
| 152 | ALOGD("fitBitmap: Created new block: this, x, y, w, h = %p, %d, %d, %d, %d", |
| 153 | newBlock, newBlock->mX, newBlock->mY, |
| 154 | newBlock->mWidth, newBlock->mHeight); |
| 155 | #endif |
| 156 | mCacheBlocks = CacheBlock::insertBlock(mCacheBlocks, newBlock); |
| 157 | } |
| 158 | } else { |
| 159 | // Insert into current column and adjust column dimensions |
| 160 | cacheBlock->mY += glyphH; |
| 161 | cacheBlock->mHeight -= glyphH; |
| 162 | #if DEBUG_FONT_RENDERER |
| 163 | ALOGD("fitBitmap: Added to existing block: this, x, y, w, h = %p, %d, %d, %d, %d", |
| 164 | cacheBlock, cacheBlock->mX, cacheBlock->mY, |
| 165 | cacheBlock->mWidth, cacheBlock->mHeight); |
| 166 | #endif |
| 167 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 168 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 169 | if (cacheBlock->mHeight < fmin(glyphH, glyphW)) { |
| 170 | // If remaining space in this block is too small to be useful, remove it |
| 171 | mCacheBlocks = CacheBlock::removeBlock(mCacheBlocks, cacheBlock); |
| 172 | } |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 173 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 174 | mDirty = true; |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 175 | mNumGlyphs++; |
| 176 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 177 | #if DEBUG_FONT_RENDERER |
| 178 | ALOGD("fitBitmap: current block list:"); |
| 179 | mCacheBlocks->output(); |
| 180 | #endif |
Romain Guy | 9b1204b | 2012-09-04 15:22:57 -0700 | [diff] [blame^] | 181 | |
Romain Guy | 9f5dab3 | 2012-09-04 12:55:44 -0700 | [diff] [blame] | 182 | return true; |
| 183 | } |
| 184 | cacheBlock = cacheBlock->mNext; |
| 185 | } |
| 186 | #if DEBUG_FONT_RENDERER |
| 187 | ALOGD("fitBitmap: returning false for glyph of size %d, %d", glyphW, glyphH); |
| 188 | #endif |
| 189 | return false; |
| 190 | } |
| 191 | |
| 192 | }; // namespace uirenderer |
| 193 | }; // namespace android |