1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Linux + android font stuff.

This commit is contained in:
jules 2011-11-21 20:15:25 +00:00
parent 4773b388ef
commit 7d7d8ff781
3 changed files with 11 additions and 1 deletions

View file

@ -46,7 +46,7 @@
management and layout.
*/
#ifndef JUCE_USE_DIRECTWRITE
#define JUCE_USE_DIRECTWRITE 1
#define JUCE_USE_DIRECTWRITE 0
#endif
#ifndef JUCE_INCLUDE_PNGLIB_CODE

View file

@ -218,3 +218,8 @@ Typeface::Ptr Typeface::createSystemTypefaceFor (const Font& font)
{
return new AndroidTypeface (font);
}
bool GlyphLayout::createNativeLayout (const AttributedString&)
{
return false;
}

View file

@ -542,3 +542,8 @@ Typeface::Ptr Font::getDefaultTypefaceForFont (const Font& font)
f.setTypefaceName (faceName);
return Typeface::createSystemTypefaceFor (f);
}
bool GlyphLayout::createNativeLayout (const AttributedString&)
{
return false;
}