mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 15:02:20 +00:00
Updated Compositing sample code.
Removed extra header, corrected typo and coding standard.
This commit is contained in:
parent
0d4b4d9a65
commit
ec8af365c5
1 changed files with 5 additions and 9 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue