Stubbed out the text drawing functions on OS X.

This commit is contained in:
Pietro Gagliardi 2015-12-27 11:32:47 -05:00
parent 15bb899770
commit 3b916fa749
1 changed files with 17 additions and 0 deletions

View File

@ -488,3 +488,20 @@ void uiDrawFreeFontFamilies(uiDrawFontFamilies *ff)
CFRelease(ff->fonts);
uiFree(ff);
}
double uiDrawTextSizeToPoints(double textSize)
{
// TODO
return 0;
}
double uiDrawPointsToTextSize(double points)
{
// TODO
return 0;
}
void uiDrawText(uiDrawContext *c, double x, double y, const char *text, uiDrawTextStyle *style)
{
// TODO
}