La librería GRRLib que es la que se usa en el 60% de los juegos Homebrew para Wii ( yo por ejemplo no la uso en el Wiilander), se ha actualizado.. la versión anterior 3.0.1 salio en junio del año pasado..
Estos son los cambios:
ChangeLog :
---------
* Color format changed for ALL GRRLib functions (now its RGBA) to fit to GX_Color format and use GX_Color1u32
* GRRLIB_LoadTexture now Auto Detect PNG or JPEG
* GRRLib introduce a new texture structure (easier to handle texture width, height, etc ...):
typedef struct GRRLIB_texImg{
unsigned int w;
unsigned int h;
unsigned int tilew;
unsigned int tileh;
unsigned int nbtilew;
unsigned int nbtileh;
unsigned int tilestart;
void *data;
} GRRLIB_texImg;
* add void GRRLIB_InitTileSet(struct GRRLIB_texImg *tex, unsigned int tilew, unsigned int tileh, unsigned int tilestart);
* GRRLIB_DrawImg recoded for simpler use
* GRRLIB_DrawTile recoded for simpler use
* InitVideo() and GRRLIB_Start() merge into GRRLIB_Init().
* add GRRLIB_PtInRect, GRRLIB_RectInRect and GRRLIB_RectOnRect. (to detect hot zone)
* GRRLIB_GetPixelFromtexImg and GRRLIB_SetPixelTotexImg (to directly read/write in texture)
* GRRLIB_CreateEmptyTexture and GRRLIB_FlushTex
* New Bitmap FX:
- GRRLIB_BMFX_Grayscale
- GRRLIB_BMFX_Invert
- GRRLIB_BMFX_Scatter
- GRRLIB_BMFX_Blur
- GRRLIB_BMFX_Pixelate
* add GRRLIB_Exit to free the memory allocated by GRRLIB
Para mas info:
http://grrlib.santo.fr/release/GRRLib4.0.0.rarhttp://grrlib.santo.fr/http://wiibrew.org/wiki/GRRLIBAquí tenéis una lista del Hombrew que usa esta librería:
http://wiibrew.org/wiki/Category:Homebrew_using_GRRLibSalu2,
Manny