diff --git a/examples/compositing/source/main.c b/examples/compositing/source/main.c index 12db972..6665e3f 100644 --- a/examples/compositing/source/main.c +++ b/examples/compositing/source/main.c @@ -4,15 +4,12 @@ #include #include -#include -#include #include #include "gfx/font3d.h" extern GXRModeObj *rmode; - int main() { float rot=0; float i; @@ -25,10 +22,9 @@ int main() { GRRLIB_texImg *tex_font = GRRLIB_LoadTexture(font3d); GRRLIB_InitTileSet(tex_font, 64, 64, 32); - GRRLIB_SetHandle (tex_font, tex_font->tilew/2, tex_font->tileh+circsize); + GRRLIB_SetHandle(tex_font, tex_font->tilew/2, tex_font->tileh+circsize); - GRRLIB_texImg *tex_screen; - tex_screen = GRRLIB_CreateEmptyTexture(rmode->fbWidth,rmode->efbHeight); + GRRLIB_texImg *tex_screen = GRRLIB_CreateEmptyTexture(rmode->fbWidth,rmode->efbHeight); GRRLIB_Settings.antialias = true; @@ -36,10 +32,10 @@ int main() { WPAD_ScanPads(); if(WPAD_ButtonsDown(0) & WPAD_BUTTON_HOME) exit(0); -// we say thant we will want to capture to a texture all the following +// we say that we will want to capture to a texture all the following GRRLIB_CompoStart(); - for(i=0;i<360;i+=30) { + for(i=0; i<360; i+=30) { // We draw some letters GRRLIB_DrawTile((rmode->fbWidth/2)-(tex_font->tilew/2), (rmode->efbHeight/2)-(tex_font->tileh+circsize), tex_font, rot+i, 1, 1, 0xFFFFFFFF, text[(int)(i/30)]-32); } @@ -49,7 +45,7 @@ int main() { rot-=0.6; -// we now draw 3 times the captured buffer playing with color +// we now draw 3 times the captured buffer playing with color GRRLIB_DrawImg(0, 0, tex_screen, 0, 1, 1, 0xFF00FFFF); GRRLIB_DrawImg(50, 50, tex_screen, 0, 1, 1, 0xFFFF00FF); GRRLIB_DrawImg(100, 100, tex_screen, 0, 1, 1, 0xFFFFFFFF);