Replace paths and windows APIs, cleanup source tree

This commit is contained in:
murdle
2026-03-01 17:42:21 +02:00
parent b63f76b43f
commit fd7d6b7a35
13040 changed files with 4674 additions and 2944714 deletions

View File

@@ -197,7 +197,7 @@ IggyGlyphMetrics * UIBitmapFont::GetGlyphMetrics(S32 glyph,IggyGlyphMetrics *met
rrbool UIBitmapFont::IsGlyphEmpty (S32 glyph)
{
if (m_cFontData->glyphIsWhitespace(glyph)) return true;
return false;//app.DebugPrintf("Is glyph %d empty? %s\n",glyph,isEmpty?"TRUE":"FALSE");
return false;//app.DebugPrintf("Is glyph %d empty? %s\n",glyph,isEmpty?"true":"false");
}
//Callback function type for returning the kerning amount for a given pair of glyphs
@@ -214,7 +214,7 @@ F32 UIBitmapFont::GetKerningForGlyphPair(S32 first_glyph,S32 second_glyph)
//Callback function type used for reporting whether a bitmap supports a given glyph at the given scale
rrbool UIBitmapFont::CanProvideBitmap(S32 glyph,F32 pixel_scale)
{
//app.DebugPrintf("Can provide bitmap for glyph %d at scale %f? %s\n",glyph,pixel_scale,canProvideBitmap?"TRUE":"FALSE");
//app.DebugPrintf("Can provide bitmap for glyph %d at scale %f? %s\n",glyph,pixel_scale,canProvideBitmap?"true":"false");
return true;
}