mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 15:02:20 +00:00
[CHG] ReadMe update
This commit is contained in:
parent
54c680d767
commit
9a450b7a78
1 changed files with 11 additions and 1 deletions
12
README.TXT
12
README.TXT
|
@ -14,6 +14,7 @@
|
||||||
|
|
||||||
===============================================================
|
===============================================================
|
||||||
Code : NoNameNo
|
Code : NoNameNo
|
||||||
|
Additional Code : Crayon
|
||||||
Code Hints : RedShade
|
Code Hints : RedShade
|
||||||
|
|
||||||
Info & Tutorial : http://grrlib.santo.fr
|
Info & Tutorial : http://grrlib.santo.fr
|
||||||
|
@ -22,7 +23,9 @@ Info & Tutorial : http://grrlib.santo.fr
|
||||||
ChangeLog :
|
ChangeLog :
|
||||||
|
|
||||||
* Color format change for ALL GRRLib function (now its RGBA) to fit to GX_Color format and use GX_Color1u32
|
* Color format change for ALL GRRLib function (now its RGBA) to fit to GX_Color format and use GX_Color1u32
|
||||||
* added GRRLIB_LoadTextureFromFile //---> Contribution by GRILLO
|
|
||||||
|
* Name Change GRRLIB_LoadTexture to GRRLIB_LoadTexturePNG
|
||||||
|
|
||||||
* GRRLib introduce a new texture structure (easier to handle texture width, height, etc ...):
|
* GRRLib introduce a new texture structure (easier to handle texture width, height, etc ...):
|
||||||
typedef struct GRRLIB_texImg{
|
typedef struct GRRLIB_texImg{
|
||||||
unsigned int w;
|
unsigned int w;
|
||||||
|
@ -34,11 +37,18 @@ ChangeLog :
|
||||||
unsigned int tilestart;
|
unsigned int tilestart;
|
||||||
void *data;
|
void *data;
|
||||||
} GRRLIB_texImg;
|
} GRRLIB_texImg;
|
||||||
|
|
||||||
* add void GRRLIB_InitTileSet(struct GRRLIB_texImg *tex, unsigned int tilew, unsigned int tileh, unsigned int tilestart);
|
* add void GRRLIB_InitTileSet(struct GRRLIB_texImg *tex, unsigned int tilew, unsigned int tileh, unsigned int tilestart);
|
||||||
|
|
||||||
* GRRLIB_Printf recoded to fit modification.
|
* GRRLIB_Printf recoded to fit modification.
|
||||||
|
|
||||||
* GRRLIB_DrawImg recoded for simpler use
|
* GRRLIB_DrawImg recoded for simpler use
|
||||||
|
|
||||||
* GRRLIB_DrawTile recoded for simpler use + // --->Frame Correction by spiffen
|
* GRRLIB_DrawTile recoded for simpler use + // --->Frame Correction by spiffen
|
||||||
|
|
||||||
|
* added GRRLIB_LoadTextureJPG (thx crayon for the file end detection idea)
|
||||||
|
|
||||||
|
|
||||||
have a look at the sample code to see how all this work ;)
|
have a look at the sample code to see how all this work ;)
|
||||||
|
|
||||||
Remember that 3.0.5 is a WIP preview for the soon coming GRRLIB 4.0 and it's not intend to be publicly released...
|
Remember that 3.0.5 is a WIP preview for the soon coming GRRLIB 4.0 and it's not intend to be publicly released...
|
||||||
|
|
Loading…
Reference in a new issue