- Timestamp:
- 05/13/14 13:58:51 (11 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/formats/md2_loader.cc
r224 r236 241 241 } 242 242 243 mesh_data * nv::md2_loader::release_mesh_data()243 mesh_data_old* nv::md2_loader::release_mesh_data() 244 244 { 245 245 mesh_data_creator m; … … 254 254 } 255 255 256 mesh_data * nv::md2_loader::get_frame( sint32 frame )256 mesh_data_old* nv::md2_loader::get_frame( sint32 frame ) 257 257 { 258 258 mesh_data_creator m; -
trunk/src/formats/md3_loader.cc
r230 r236 351 351 } 352 352 353 mesh_data * nv::md3_loader::release_mesh_data()353 mesh_data_old* nv::md3_loader::release_mesh_data() 354 354 { 355 355 mesh_data_creator m; … … 371 371 } 372 372 373 mesh_data * nv::md3_loader::get_frame( sint32 frame )373 mesh_data_old* nv::md3_loader::get_frame( sint32 frame ) 374 374 { 375 375 mesh_data_creator m; -
trunk/src/formats/md5_loader.cc
r226 r236 285 285 } 286 286 287 mesh_data * nv::md5_loader::release_submesh_data( uint32 mesh_id )287 mesh_data_old* nv::md5_loader::release_submesh_data( uint32 mesh_id ) 288 288 { 289 289 mesh_data_creator m; -
trunk/src/gfx/keyframed_mesh.cc
r231 r236 15 15 using namespace nv; 16 16 17 keyframed_mesh::keyframed_mesh( context* a_context, mesh_data * a_data )17 keyframed_mesh::keyframed_mesh( context* a_context, mesh_data_old* a_data ) 18 18 : animated_mesh() 19 19 , m_data( a_data ) … … 115 115 } 116 116 117 keyframed_mesh_gpu::keyframed_mesh_gpu( context* a_context, mesh_data * a_data, program* a_program )117 keyframed_mesh_gpu::keyframed_mesh_gpu( context* a_context, mesh_data_old* a_data, program* a_program ) 118 118 : keyframed_mesh( a_context, a_data ) 119 119 , m_loc_next_position( 0 ) … … 160 160 161 161 162 nv::keyframed_mesh_cpu::keyframed_mesh_cpu( context* a_context, mesh_data * a_data )162 nv::keyframed_mesh_cpu::keyframed_mesh_cpu( context* a_context, mesh_data_old* a_data ) 163 163 : keyframed_mesh( a_context, a_data ) 164 164 {
Note: See TracChangeset
for help on using the changeset viewer.