Home | History | Annotate | Download | only in font

Lines Matching refs:mHeight

41             newBlock->mWidth, newBlock->mHeight);
85 blockToRemove->mWidth, blockToRemove->mHeight);
112 mTexture(NULL), mTextureId(0), mWidth(width), mHeight(height), mFormat(format),
117 mWidth - TEXTURE_BORDER_SIZE, mHeight - TEXTURE_BORDER_SIZE, true);
146 mWidth - TEXTURE_BORDER_SIZE, mHeight - TEXTURE_BORDER_SIZE, true);
185 mTexture = PixelBuffer::create(mFormat, mWidth, mHeight);
194 glTexImage2D(GL_TEXTURE_2D, 0, mFormat, mWidth, mHeight, 0,
260 if (glyph.fHeight + TEXTURE_BORDER_SIZE * 2 > mHeight) {
278 if (roundedUpW <= cacheBlock->mWidth && glyphH <= cacheBlock->mHeight &&
281 if (cacheBlock->mHeight - glyphH < glyphH) {
297 if (mHeight - glyphH >= glyphH) {
300 roundedUpW, mHeight - glyphH - TEXTURE_BORDER_SIZE);
304 newBlock->mWidth, newBlock->mHeight);
311 cacheBlock->mHeight -= glyphH;
315 cacheBlock->mWidth, cacheBlock->mHeight);
319 if (cacheBlock->mHeight < fmin(glyphH, glyphW)) {