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:
parent
4773b388ef
commit
7d7d8ff781
3 changed files with 11 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -218,3 +218,8 @@ Typeface::Ptr Typeface::createSystemTypefaceFor (const Font& font)
|
|||
{
|
||||
return new AndroidTypeface (font);
|
||||
}
|
||||
|
||||
bool GlyphLayout::createNativeLayout (const AttributedString&)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue