Updated Compositing sample code.

Removed extra header, corrected typo and coding standard.
This commit is contained in:
Crayon2000 2015-12-28 17:00:17 -05:00
parent 0d4b4d9a65
commit ec8af365c5

View file

@ -4,15 +4,12 @@
#include <grrlib.h>
#include <stdlib.h>
#include <math.h>
#include <malloc.h>
#include <wiiuse/wpad.h>
#include "gfx/font3d.h"
extern GXRModeObj *rmode;
int main() {
float rot=0;
float i;
@ -27,8 +24,7 @@ int main() {
GRRLIB_InitTileSet(tex_font, 64, 64, 32);
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,7 +32,7 @@ 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) {