mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-04 22:03:29 -06:00
37 lines
No EOL
494 B
C++
37 lines
No EOL
494 B
C++
#include "umake.h"
|
|
#include <Draw/Draw.h>
|
|
|
|
#ifdef PLATFORM_COCOA
|
|
|
|
namespace Upp { // Silence linker errors
|
|
|
|
CommonFontInfo GetFontInfoSys(Font font)
|
|
{
|
|
CommonFontInfo fi;
|
|
return fi;
|
|
}
|
|
|
|
GlyphInfo GetGlyphInfoSys(Font font, int chr)
|
|
{
|
|
GlyphInfo gi;
|
|
return gi;
|
|
}
|
|
|
|
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 |