mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-10 10:22:20 +00:00
75 lines
2.5 KiB
Text
75 lines
2.5 KiB
Text
|
==============================================================
|
||
|
________ __________ __________ .____ .___ __________
|
||
|
/ _____/ \______ \\______ \| | | |\______ \
|
||
|
/ \ ___ | _/ | _/| | | | | | _/
|
||
|
\ \_\ \ | | \ | | \| |___ | | | | \
|
||
|
\______ / |____|_ / |____|_ /|_______ \|___| |______ /
|
||
|
\/ \/ \/ \/ \/
|
||
|
________ _______
|
||
|
\_____ \ \ _ \
|
||
|
_(__ < / /_\ \
|
||
|
/ \ \ \_/ \
|
||
|
/______ / /\ \_____ /
|
||
|
\/ \/ \/ .5 ALPHA
|
||
|
|
||
|
===============================================================
|
||
|
Code : NoNameNo
|
||
|
Additional Code : Crayon
|
||
|
Code Hints : RedShade
|
||
|
|
||
|
Info & Tutorial : http://grrlib.santo.fr
|
||
|
===============================================================
|
||
|
|
||
|
ChangeLog :
|
||
|
|
||
|
* Color format change for ALL GRRLib function (now its RGBA) to fit to GX_Color format and use GX_Color1u32
|
||
|
|
||
|
* Name Change GRRLIB_LoadTexture to GRRLIB_LoadTexturePNG
|
||
|
|
||
|
* 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_Printf recoded to fit modification.
|
||
|
|
||
|
* GRRLIB_DrawImg recoded for simpler use
|
||
|
|
||
|
* GRRLIB_DrawTile recoded for simpler use + // --->Frame Correction by spiffen
|
||
|
|
||
|
* added GRRLIB_LoadTextureJPG (thx crayon for the file end detection idea)
|
||
|
|
||
|
* InitVideo() and GRRLIB_Start() merge into GRRLIB_Init().
|
||
|
|
||
|
* add GRRLIB_PtInRect, GRRLIB_RectInRect and GRRLIB_RectOnRect.
|
||
|
|
||
|
* GRRLIB_GetPixelFromtexImg and GRRLIB_SetPixelTotexImg
|
||
|
|
||
|
* GRRLIB_CreateEmptyTexture and GRRLIB_FlushTex
|
||
|
|
||
|
* New Bitmap FX: GRRLIB_BMFX_GrayScale and GRRLIB_BMFX_Scatter
|
||
|
|
||
|
* add GRRLIB_Exit to free the memory allocated by GRRLIB
|
||
|
|
||
|
* add GRRLIB_Credit that you HAVE to call at least ONCE in your code to respect author desire !! ( thanks to respect our work following this rule !!)
|
||
|
|
||
|
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...
|
||
|
Contact me to provide me all your patch/addon/new functions...
|
||
|
|
||
|
NoNameNo.
|
||
|
|
||
|
|
||
|
|
||
|
|