1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     graphics.h
4 
5   Copyright (C)2009-2012 Nintendo Co., Ltd.  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   $Rev: 46365 $
14  *---------------------------------------------------------------------------*/
15 
16 #include <nn/math.h>
17 
18 #define APP_NAME "Demo2"
19 #define WIDTH 240
20 #define HEIGHT 400
21 
22 #define DMP_PI  (3.1415926f)
23 
24 int DrawFrame(nn::math::VEC3 v_cam, nn::math::VEC3 v_focus, nn::math::VEC2 v_acc, u8 loudness);
25 
26 /* initialization */
27 int InitializeGraphics(void);
28 /* finalization */
29 int FinalizeGraphics(void);
30 
31 /*---------------------------------------------------------------------------*
32   End of file
33  *---------------------------------------------------------------------------*/
34