mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
umk: MacOS building fixes
git-svn-id: svn://ultimatepp.org/upp/trunk@15681 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
9f08d0b1d9
commit
ba092bb206
1 changed files with 33 additions and 0 deletions
|
|
@ -190,3 +190,36 @@ String Ide::IdeGetNestFolder()
|
|||
return Null;
|
||||
}
|
||||
|
||||
#if defined(__APPLE__) && defined(flagLINUX) // we are on macos building using make
|
||||
|
||||
#include <Draw/Draw.h>
|
||||
|
||||
namespace Upp {
|
||||
|
||||
CommonFontInfo GetFontInfoSys(Font font)
|
||||
{
|
||||
CommonFontInfo fi;
|
||||
return fi;
|
||||
}
|
||||
|
||||
GlyphInfo GetGlyphInfoSys(Font font, int chr)
|
||||
{
|
||||
return GlyphInfo();
|
||||
}
|
||||
|
||||
Vector<FaceInfo> GetAllFacesSys()
|
||||
{
|
||||
Vector<FaceInfo> r;
|
||||
return r;
|
||||
}
|
||||
|
||||
String GetFontDataSys(Font font)
|
||||
{
|
||||
return String();
|
||||
}
|
||||
|
||||
void RenderCharacterSys(FontGlyphConsumer& sw, double x, double y, int chr, Font font) {}
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue