[CHG] Doc improvement

This commit is contained in:
Crayon2000 2009-11-11 23:52:36 +00:00
parent 8f2e7413e5
commit 49ffb512b5
2 changed files with 18 additions and 20 deletions

View file

@ -102,22 +102,21 @@ typedef struct GRRLIB_drawSettings {
* Structure to hold the texture information.
*/
typedef struct GRRLIB_texImg {
uint w; /**< Texture Width. */
uint h; /**< Texture Height. */
int handlex; /**< Texture Handle x. */
int handley; /**< Texture Handle y. */
int offsetx; /**< Texture Offset x. */
int offsety; /**< Texture Offset y. */
uint w; /**< Texture width. */
uint h; /**< Texture height. */
int handlex; /**< Texture handle x. */
int handley; /**< Texture handle y. */
int offsetx; /**< Texture offset x. */
int offsety; /**< Texture offset y. */
bool tiledtex; /**< true => Texture is tiled. */
bool tiledtex; /**< Texture is tiled if set to true. */
uint tilew; /**< Width of one tile. */
uint tileh; /**< Height of one tile. */
uint nbtilew; /**< Number of tiles for the x axis. */
uint nbtileh; /**< Number of tiles for the y axis. */
uint tilestart; /**< Offset to tile starting position. */
f32 ofnormaltexx; /**< Offset of normalized texture on x */
f32 ofnormaltexy; /**< Offset of normalized texture on y */
f32 ofnormaltexx;/**< Offset of normalized texture on x. */
f32 ofnormaltexy;/**< Offset of normalized texture on y. */
void *data; /**< Pointer to the texture data. */
} GRRLIB_texImg;
@ -140,8 +139,7 @@ typedef struct GRRLIB_bytemapChar {
/**
* Structure to hold the bytemap font information.
*/
typedef
struct GRRLIB_bytemapFont {
typedef struct GRRLIB_bytemapFont {
char *name; /**< Font name. */
u32 *palette; /**< Font palette. */
u16 nbChar; /**< Number of characters in font. */