packages feed

SFML-2.3.2: cbits/SFML/Graphics/Font_helper.c

#include <SFML/Graphics/Font.h>


void sfFont_getGlyph_helper (sfFont* font, sfUint32 codePoint, unsigned int characterSize, sfBool bold, sfGlyph* glyph)
{
    *glyph = sfFont_getGlyph (font, codePoint, characterSize, bold);
}


void sfFont_getInfo_helper (sfFont* font, sfFontInfo* info)
{
    *info = sfFont_getInfo (font);
}