Skip to content
Snippets Groups Projects
Commit 682f8afc authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-296

Checker: UNINIT_CTOR
Function: LLFontGlyphInfo::LLFontGlyphInfo(unsigned int)
File: /indra/llrender/llfontfreetype.cpp
parent 52556982
No related branches found
No related tags found
No related merge requests found
...@@ -91,14 +91,15 @@ LLFontManager::~LLFontManager() ...@@ -91,14 +91,15 @@ LLFontManager::~LLFontManager()
LLFontGlyphInfo::LLFontGlyphInfo(U32 index) LLFontGlyphInfo::LLFontGlyphInfo(U32 index)
: mGlyphIndex(index), : mGlyphIndex(index),
mWidth(0), // In pixels
mHeight(0), // In pixels
mXAdvance(0.f), // In pixels
mYAdvance(0.f), // In pixels
mXBitmapOffset(0), // Offset to the origin in the bitmap mXBitmapOffset(0), // Offset to the origin in the bitmap
mYBitmapOffset(0), // Offset to the origin in the bitmap mYBitmapOffset(0), // Offset to the origin in the bitmap
mXBearing(0), // Distance from baseline to left in pixels mXBearing(0), // Distance from baseline to left in pixels
mYBearing(0), // Distance from baseline to top in pixels mYBearing(0), // Distance from baseline to top in pixels
mWidth(0), // In pixels mBitmapNum(0) // Which bitmap in the bitmap cache contains this glyph
mHeight(0), // In pixels
mXAdvance(0.f), // In pixels
mYAdvance(0.f) // In pixels
{ {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment