Changeset 1090 for GTP/trunk/Lib/Geom/shared/GTGeometry/include
- Timestamp:
- 07/06/06 20:20:06 (19 years ago)
- Location:
- GTP/trunk/Lib/Geom/shared/GTGeometry/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodStripsLibrary.h
r1083 r1090 144 144 void UpdateDataRetrievalInterface(void); 145 145 146 //Number of strips in each submesh 147 int* mStripsSubmesh; 148 146 149 public: 147 150 … … 177 180 uint32 GetValidIndexCount(int submeshid) const { return indices_x_submesh[submeshid]; } 178 181 uint32 GetValidOffset(int submeshid) const { return offsets_x_submesh[submeshid]; } 182 uint32 GetTotalStripCount(void) const { return mTotalStrips; } 183 uint32 GetSubMeshtripCount(int submeshid) const { return mStripsSubmesh[submeshid]; } 179 184 }; 180 185 } -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodTreeLibrary.h
r1083 r1090 24 24 LodTreeLibrary( const LodStripsLibraryData *, 25 25 const TreeSimplificationSequence *, 26 Geometry::Mesh *treeGeoMesh ,26 Geometry::Mesh *treeGeoMesh/*, 27 27 uint32 leafSubMeshID 28 28 /*std::string foliage_verts, … … 65 65 const IndexData* CurrentLOD_Foliage_Indices(void) const; 66 66 const VertexData* Get_Foliage_VertexData(void) const; 67 uint32 GetLeavesSubMesh(void) const { return mLeavesSubMesh; } 67 68 68 69 private: 69 70 Foliage *foliage; 70 71 Geometry::LodStripsLibrary *trunk; 72 uint32 mLeavesSubMesh; 71 73 }; 72 74 }
Note: See TracChangeset
for help on using the changeset viewer.