.\" Automatically generated by Pandoc 2.9.2.1 .\" .TH "al_draw_glyph" "3alleg5" "" "Allegro reference manual" "" .hy .SH NAME .PP al_draw_glyph - Allegro 5 API .SH SYNOPSIS .IP .nf \f[C] #include void al_draw_glyph(const ALLEGRO_FONT *f, ALLEGRO_COLOR color, float x, float y, int codepoint) \f[R] .fi .SH DESCRIPTION .PP Draws the glyph that corresponds with \f[C]codepoint\f[R] in the given \f[C]color\f[R] using the given \f[C]font\f[R]. If \f[C]font\f[R] does not have such a glyph, nothing will be drawn. .PP To draw a string as left to right horizontal text you will need to use al_get_glyph_advance(3alleg5) to determine the position of each glyph. For drawing strings in other directions, such as top to down, use al_get_glyph_dimensions(3alleg5) to determine the size and position of each glyph. .PP If you have to draw many glyphs at the same time, use al_hold_bitmap_drawing(3alleg5) with true as the parameter, before drawing the glyphs, and then call al_hold_bitmap_drawing(3alleg5) again with false as a parameter when done drawing the glyphs to further enhance performance. .SH SINCE .PP 5.1.12 .SH SEE ALSO .PP al_get_glyph_width(3alleg5), al_get_glyph_dimensions(3alleg5), al_get_glyph_advance(3alleg5).