1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - WM - demos - dataShare-Model 3 File: graphics.h 4 5 Copyright 2005-2008 Nintendo. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 13 $Date:: 2008-09-18#$ 14 $Rev: 8573 $ 15 $Author: okubata_ryoma $ 16 *---------------------------------------------------------------------------*/ 17 18 #ifndef __GRAPHICS_H__ 19 #define __GRAPHICS_H__ 20 21 #define PSEUDO2D_ONE 64 22 23 extern void initGraphics(void); 24 extern void setupPseudo2DCamera(void); 25 extern void drawPseudo2DTexQuad(int sx, int sy, int width, int height, int texw, int texh); 26 extern void drawPseudo2DColorQuad(int sx, int sy, int width, int height, GXRgb color); 27 28 #endif 29