Stubbed out the text drawing functions on Windows too.

This commit is contained in:
Pietro Gagliardi 2015-12-31 12:30:53 -05:00
parent 1b3d303cbe
commit c5d4813dec
1 changed files with 17 additions and 0 deletions

View File

@ -107,3 +107,20 @@ void uiDrawFreeFontFamilies(uiDrawFontFamilies *ff)
ff->fonts->Release();
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
}