Changeset 314 for trunk/src/gfx
- Timestamp:
- 08/19/14 01:34:13 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gfx/keyframed_mesh.cc
r313 r314 136 136 137 137 138 void nv::keyframed_mesh_gpu::update( uint32 ms ) 139 { 138 void nv::keyframed_mesh_gpu::update_animation( animation_entry* anim, uint32 a_anim_time ) 139 { 140 keyframed_mesh::update_animation( anim, a_anim_time ); 140 141 if ( m_loc_next_position == -1 ) return; 141 animated_mesh::update( ms );142 142 if ( m_gpu_last_frame != m_last_frame ) 143 143 { … … 199 199 } 200 200 201 void nv::keyframed_mesh_cpu::update( uint32 ms ) 202 { 203 animated_mesh::update( ms ); 204 201 void nv::keyframed_mesh_cpu::update_animation( animation_entry* anim, uint32 a_anim_time ) 202 { 203 keyframed_mesh::update_animation( anim, a_anim_time ); 205 204 // TODO: this could be done generic for any data 206 205 if ( m_has_tangent )
Note: See TracChangeset
for help on using the changeset viewer.