Fix Doxygen oversight

This commit is contained in:
fincs 2016-01-19 23:45:31 +01:00
parent 8b5e753235
commit 70f84f4950
2 changed files with 3 additions and 2 deletions

View File

@ -82,6 +82,7 @@ extern "C" {
* @example graphics/printing/both-screen-text/source/main.c * @example graphics/printing/both-screen-text/source/main.c
* @example graphics/printing/colored-text/source/main.c * @example graphics/printing/colored-text/source/main.c
* @example graphics/printing/multiple-windows-text/source/main.c * @example graphics/printing/multiple-windows-text/source/main.c
* @example graphics/printing/system-font/source/main.c
* @example graphics/gpu/fragment_light/source/main.c * @example graphics/gpu/fragment_light/source/main.c
* @example graphics/gpu/geoshader/source/main.c * @example graphics/gpu/geoshader/source/main.c
* @example graphics/gpu/gpusprites/source/main.c * @example graphics/gpu/gpusprites/source/main.c

View File

@ -129,12 +129,12 @@ typedef struct
float xOffset; ///< Horizontal offset to draw the glyph width. float xOffset; ///< Horizontal offset to draw the glyph width.
float xAdvance; ///< Horizontal distance to advance after drawing the glyph. float xAdvance; ///< Horizontal distance to advance after drawing the glyph.
float width; ///< Glyph width. float width; ///< Glyph width.
///< Texture coordinates to use to render the glyph. /// Texture coordinates to use to render the glyph.
struct struct
{ {
float left, top, right, bottom; float left, top, right, bottom;
} texcoord; } texcoord;
///< Vertex coordinates to use to render the glyph. /// Vertex coordinates to use to render the glyph.
struct struct
{ {
float left, top, right, bottom; float left, top, right, bottom;