Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-08-10 22:32:36 +0000
committerStijn Buys <ingar@osirion.org>2009-08-10 22:32:36 +0000
commitbd142a328328cdf0cbfbb59e4e0aa99dd51184b8 (patch)
treec2ed4e832e60b379723ea3f530c5b192bec0da61 /src/model/asefile.h
parentbbd04914749b2e3918796fe331daf649b06163ea (diff)
initial texture support for ase models
Diffstat (limited to 'src/model/asefile.h')
-rw-r--r--src/model/asefile.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/model/asefile.h b/src/model/asefile.h
index 7f5ab03..dc1516b 100644
--- a/src/model/asefile.h
+++ b/src/model/asefile.h
@@ -55,6 +55,16 @@ private:
bool read_mesh_vertex_list(std::istream &is);
/**
+ * @brief read *MESH_TVERTLIST
+ */
+ bool read_mesh_tvertex_list(std::istream &is);
+
+ /**
+ * @brief read *MESH_TFACELIST
+ */
+ bool read_mesh_tface_list(std::istream &is);
+
+ /**
* @brief read *MESH
*/
bool read_mesh(std::istream &is);
@@ -84,6 +94,8 @@ private:
VertexList ase_vertexlist;
+ VertexList ase_tvertexlist;
+
FaceList ase_facelist;
math::Vector3f ase_maxbbox;