Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/matrix.h @ 983:ff74988bbb2a
minor fix
author | root@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 01 Oct 2010 00:37:06 +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 |