mhm, does that mean I do have to write all the stuff always in my program?
#include "MyFont.inc"
FontInfo myfont;
myfont = loadfont(MyFont_glyphPoints,
MyFont_glyphPointIndices,
MyFont_glyphInstructions,
MyFont_glyphInstructionIndices,
MyFont_glyphInstructionCounts,
MyFont_glyphAdvances,
MyFont_characterMap,
MyFont_glyphCount);
is it not possible to install the fonts once and for all?
To have the new fonts (e.g., symbol.ttf or Windings.ttf) always available for my programs, from the start, out of the box, as if I wanted to use e.g., MonoTypeface , just by
Text(x, y, buf, MonoTypeface, 20);
Text(x, y, buf, symbol, 20);
Text(x, y, buf, SansTypeface, 20);
Text(x, y, buf, Windings, 20);
Text(x, y, buf, SerifeTypeface, 20);
simply as I always may use different ttf fonts in Windows when they once have been istalled

either in which working folder my .c file is in, always having all fonts at 1 place like the preinstalled ones
