1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     gr.h
4 
5   Copyright (C)2010 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: 38834 $
14  *---------------------------------------------------------------------------*/
15 
16 /* Please see man pages for details
17 
18 */
19 
20 #ifndef NN_GR_H_
21 #define NN_GR_H_
22 
23 /* Please see man pages for details
24 
25 */
26 
27 /* Please see man pages for details
28 
29 
30 */
31 
32 #if defined(NN_PLATFORM_CTR)
33     #include <nn/gr/CTR/gr_Shader.h>
34     #include <nn/gr/CTR/gr_BindSymbol.h>
35     #include <nn/gr/CTR/gr_Vertex.h>
36     #include <nn/gr/CTR/gr_Combiner.h>
37     #include <nn/gr/CTR/gr_RenderState.h>
38     #include <nn/gr/CTR/gr_Texture.h>
39     #include <nn/gr/CTR/gr_FragmentLight.h>
40     #include <nn/gr/CTR/gr_LookUpTable.h>
41     #include <nn/gr/CTR/gr_Viewport.h>
42     #include <nn/gr/CTR/gr_Scissor.h>
43     #include <nn/gr/CTR/gr_Fog.h>
44     #include <nn/gr/CTR/gr_ProcedureTexture.h>
45     #include <nn/gr/CTR/gr_FrameBuffer.h>
46 
47 #ifdef  __cplusplus
48     namespace nn {
49         namespace gr {
50             using namespace nn::gr::CTR;
51         }
52     }
53 #endif // __cplusplus
54 
55 #else
56     #error no platform selected
57 #endif
58 
59 #endif
60