Parcourir la source

Propose new function: GenImageFont()

pull/558/head
raysan5 il y a 6 ans
Parent
révision
b48d225a43
1 fichiers modifiés avec 9 ajouts et 0 suppressions
  1. +9
    -0
      src/textures.c

+ 9
- 0
src/textures.c Voir le fichier

@ -1979,6 +1979,15 @@ Image GenImageCellular(int width, int height, int tileSize)
return image;
}
// Generate image: font atlas. Requires TTF as input file.
// NOTE: Generated atlas packs characters in order and rectangles are defined with magenta borders (?)
Image GenImageFont(const char *fileName, int fontSize, int charsCount, int *fontChars, CharInfo *chars)
{
CharInfo *chars; // Characters info (if required)
// TODO.
}
#endif // SUPPORT_IMAGE_GENERATION
// Generate GPU mipmaps for a texture

Chargement…
Annuler
Enregistrer