mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 15:02:20 +00:00
[CHG] doxygen fix.
This commit is contained in:
parent
6649c513f8
commit
00ffc71ed0
1 changed files with 14 additions and 18 deletions
|
@ -8,6 +8,11 @@
|
||||||
#ifndef __GXHDR__
|
#ifndef __GXHDR__
|
||||||
#define __GXHDR__
|
#define __GXHDR__
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file GRRLIB.h
|
||||||
|
* GRRLIB library.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <gccore.h>
|
#include <gccore.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -15,26 +20,17 @@
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @struct GRRLIB_texImg
|
* Structure to hold the texture informations.
|
||||||
* @brief Structure to hold the texture informations.
|
|
||||||
* @param w width of the texture.
|
|
||||||
* @param h height of the texture.
|
|
||||||
* @param tilew widht of a tile.
|
|
||||||
* @param tileh height of a tile.
|
|
||||||
* @param nbtilew number of tiles for the x axis.
|
|
||||||
* @param nbtileh number of tiles for the y axis.
|
|
||||||
* @param tilestart
|
|
||||||
* @param data pointer to the texture data.
|
|
||||||
*/
|
*/
|
||||||
typedef struct GRRLIB_texImg{
|
typedef struct GRRLIB_texImg{
|
||||||
unsigned int w;
|
unsigned int w; /**< width of the texture. */
|
||||||
unsigned int h;
|
unsigned int h; /**< height of the texture. */
|
||||||
unsigned int tilew;
|
unsigned int tilew; /**< tilew widht of a tile. */
|
||||||
unsigned int tileh;
|
unsigned int tileh; /**< tileh height of a tile. */
|
||||||
unsigned int nbtilew;
|
unsigned int nbtilew; /**< nbtilew number of tiles for the x axis. */
|
||||||
unsigned int nbtileh;
|
unsigned int nbtileh; /**< nbtileh number of tiles for the y axis. */
|
||||||
unsigned int tilestart;
|
unsigned int tilestart; /**< */
|
||||||
void *data;
|
void *data; /**< pointer to the texture data. */
|
||||||
} GRRLIB_texImg;
|
} GRRLIB_texImg;
|
||||||
|
|
||||||
extern Mtx GXmodelView2D;
|
extern Mtx GXmodelView2D;
|
||||||
|
|
Loading…
Reference in a new issue