Changeset 383 for trunk/src/formats/md5_loader.cc
- Timestamp:
- 06/02/15 20:56:15 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/formats/md5_loader.cc
r376 r383 48 48 49 49 // MESH data 50 std::vector<md5_joint_info> joint_infos;51 std::vector<transform>base_frames;50 dynamic_array< md5_joint_info > joint_infos; 51 vector< transform > base_frames; 52 52 size_t num_animated_components = 0; 53 53 size_t frame_rate = 0; … … 301 301 else if ( command == "frame" ) 302 302 { 303 std::vector<float> frame;303 vector<float> frame; 304 304 uint32 frame_id; 305 305 sstream >> frame_id; … … 454 454 } 455 455 456 void md5_loader::build_frame_skeleton( mesh_node_data* nodes, uint32 index, const std::vector<md5_joint_info>& joint_infos, const std::vector<transform>& base_frames, const std::vector<float>& frame_data )456 void md5_loader::build_frame_skeleton( mesh_node_data* nodes, uint32 index, const const_array_ref<md5_joint_info>& joint_infos, const const_array_ref<transform>& base_frames, const const_array_ref<float>& frame_data ) 457 457 { 458 458 assert( m_type == ANIMATION );
Note: See TracChangeset
for help on using the changeset viewer.