Mercurial > hg > Game > Cerium
annotate old/simple_render/SpuSpan.h @ 2069:26aa08c9a1de draft default tip
cuda example fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 12 Feb 2017 10:04:55 +0900 |
parents | 3bc98f6d31ff |
children |
rev | line source |
---|---|
109 | 1 #ifndef INCLUDED_SPU_SPAN |
2 #define INCLUDED_SPU_SPAN | |
3 | |
4 #ifndef INCLUDED_VIEWER_TYPES | |
5 # include "viewer_types.h" | |
6 #endif | |
7 | |
8 #ifndef INCLUDED_SPAN_PACK | |
9 # include "SpanPackList.h" | |
10 #endif | |
11 | |
12 class SpuSpan { | |
13 public: /* fields */ | |
14 SpanPackList list[SPE_NUM_MAX]; | |
15 | |
16 public: /* methods */ | |
17 void init(void); | |
18 }; | |
19 | |
20 #endif |