blob: 793282272866f5873eff87b432e0d0ebfdfc62a7 [file] [log] [blame]
Romain Guy9f5dab32012-09-04 12:55:44 -07001/*
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
22namespace android {
23namespace 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 */
34CacheBlock* 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 Guy9b1204b2012-09-04 15:22:57 -070040
Romain Guy9f5dab32012-09-04 12:55:44 -070041 CacheBlock *currBlock = head;
42 CacheBlock *prevBlock = NULL;
Romain Guy9b1204b2012-09-04 15:22:57 -070043
Romain Guy9f5dab32012-09-04 12:55:44 -070044 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 Guy9b1204b2012-09-04 15:22:57 -070049
Romain Guy9f5dab32012-09-04 12:55:44 -070050 if (prevBlock) {
51 prevBlock->mNext = newBlock;
52 return head;
53 } else {
54 return newBlock;
55 }
56 }
Romain Guy9b1204b2012-09-04 15:22:57 -070057
Romain Guy9f5dab32012-09-04 12:55:44 -070058 prevBlock = currBlock;
59 currBlock = currBlock->mNext;
60 }
Romain Guy9b1204b2012-09-04 15:22:57 -070061
Romain Guy9f5dab32012-09-04 12:55:44 -070062 // 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 Guy9b1204b2012-09-04 15:22:57 -070065
Romain Guy9f5dab32012-09-04 12:55:44 -070066 if (currBlock) {
67 currBlock->mPrev = newBlock;
68 }
Romain Guy9b1204b2012-09-04 15:22:57 -070069
Romain Guy9f5dab32012-09-04 12:55:44 -070070 if (prevBlock) {
71 prevBlock->mNext = newBlock;
72 return head;
73 } else {
74 return newBlock;
75 }
76}
77
78CacheBlock* 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 Guy9b1204b2012-09-04 15:22:57 -070084
Romain Guy9f5dab32012-09-04 12:55:44 -070085 CacheBlock* newHead = head;
86 CacheBlock* nextBlock = blockToRemove->mNext;
87 CacheBlock* prevBlock = blockToRemove->mPrev;
Romain Guy9b1204b2012-09-04 15:22:57 -070088
Romain Guy9f5dab32012-09-04 12:55:44 -070089 if (prevBlock) {
90 prevBlock->mNext = nextBlock;
91 } else {
92 newHead = nextBlock;
93 }
Romain Guy9b1204b2012-09-04 15:22:57 -070094
Romain Guy9f5dab32012-09-04 12:55:44 -070095 if (nextBlock) {
96 nextBlock->mPrev = prevBlock;
97 }
Romain Guy9b1204b2012-09-04 15:22:57 -070098
Romain Guy9f5dab32012-09-04 12:55:44 -070099 delete blockToRemove;
Romain Guy9b1204b2012-09-04 15:22:57 -0700100
Romain Guy9f5dab32012-09-04 12:55:44 -0700101 return newHead;
102}
103
104///////////////////////////////////////////////////////////////////////////////
105// CacheTexture
106///////////////////////////////////////////////////////////////////////////////
107
108bool 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 Guy9b1204b2012-09-04 15:22:57 -0700115
Romain Guy9f5dab32012-09-04 12:55:44 -0700116 // 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 Guy9b1204b2012-09-04 15:22:57 -0700122
Romain Guy9f5dab32012-09-04 12:55:44 -0700123 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 Guy9b1204b2012-09-04 15:22:57 -0700135
Romain Guy9f5dab32012-09-04 12:55:44 -0700136 *retOriginX = cacheBlock->mX;
137 *retOriginY = cacheBlock->mY;
Romain Guy9b1204b2012-09-04 15:22:57 -0700138
Romain Guy9f5dab32012-09-04 12:55:44 -0700139 // 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 Guy9b1204b2012-09-04 15:22:57 -0700146
Romain Guy9f5dab32012-09-04 12:55:44 -0700147 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 Guy9b1204b2012-09-04 15:22:57 -0700168
Romain Guy9f5dab32012-09-04 12:55:44 -0700169 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 Guy9b1204b2012-09-04 15:22:57 -0700173
Romain Guy9f5dab32012-09-04 12:55:44 -0700174 mDirty = true;
Romain Guy9b1204b2012-09-04 15:22:57 -0700175 mNumGlyphs++;
176
Romain Guy9f5dab32012-09-04 12:55:44 -0700177#if DEBUG_FONT_RENDERER
178 ALOGD("fitBitmap: current block list:");
179 mCacheBlocks->output();
180#endif
Romain Guy9b1204b2012-09-04 15:22:57 -0700181
Romain Guy9f5dab32012-09-04 12:55:44 -0700182 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