Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/matrix.h @ 927:651251d56f36
remove garbage codes from viewerGL
author | koba <koba@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 30 Jul 2010 17:57:49 +0900 |
parents | ad10d6d39ca6 |
children |
rev | line source |
---|---|
911 | 1 #ifndef INCLUDED_MATRIX |
2 #define INCLUDED_MATRIX | |
3 | |
4 struct MatrixList { | |
5 float *matrix; | |
6 MatrixList *next; | |
7 | |
8 }; | |
9 | |
10 struct MatrixListInfo { | |
11 int id; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
911
diff
changeset
|
12 float *coord_pack; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
911
diff
changeset
|
13 int coord_pack_size; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
911
diff
changeset
|
14 int list_length; |
911 | 15 MatrixList *first; |
16 MatrixList *last; | |
17 MatrixListInfo *next; | |
18 }; | |
19 | |
20 #endif |