Changeset 236 for trunk/src


Ignore:
Timestamp:
05/13/14 13:58:51 (11 years ago)
Author:
epyon
Message:
  • mass renames to prepare for new mesh_data
Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/formats/md2_loader.cc

    r224 r236  
    241241}
    242242
    243 mesh_data* nv::md2_loader::release_mesh_data()
     243mesh_data_old* nv::md2_loader::release_mesh_data()
    244244{
    245245        mesh_data_creator m;
     
    254254}
    255255
    256 mesh_data* nv::md2_loader::get_frame( sint32 frame )
     256mesh_data_old* nv::md2_loader::get_frame( sint32 frame )
    257257{
    258258        mesh_data_creator m;
  • trunk/src/formats/md3_loader.cc

    r230 r236  
    351351}
    352352
    353 mesh_data* nv::md3_loader::release_mesh_data()
     353mesh_data_old* nv::md3_loader::release_mesh_data()
    354354{
    355355        mesh_data_creator m;
     
    371371}
    372372
    373 mesh_data* nv::md3_loader::get_frame( sint32 frame )
     373mesh_data_old* nv::md3_loader::get_frame( sint32 frame )
    374374{
    375375        mesh_data_creator m;
  • trunk/src/formats/md5_loader.cc

    r226 r236  
    285285}
    286286
    287 mesh_data* nv::md5_loader::release_submesh_data( uint32 mesh_id )
     287mesh_data_old* nv::md5_loader::release_submesh_data( uint32 mesh_id )
    288288{
    289289        mesh_data_creator m;
  • trunk/src/gfx/keyframed_mesh.cc

    r231 r236  
    1515using namespace nv;
    1616
    17 keyframed_mesh::keyframed_mesh( context* a_context, mesh_data* a_data )
     17keyframed_mesh::keyframed_mesh( context* a_context, mesh_data_old* a_data )
    1818        : animated_mesh()
    1919        , m_data( a_data )
     
    115115}
    116116
    117 keyframed_mesh_gpu::keyframed_mesh_gpu( context* a_context, mesh_data* a_data, program* a_program )
     117keyframed_mesh_gpu::keyframed_mesh_gpu( context* a_context, mesh_data_old* a_data, program* a_program )
    118118        : keyframed_mesh( a_context, a_data )
    119119        , m_loc_next_position( 0 )
     
    160160
    161161
    162 nv::keyframed_mesh_cpu::keyframed_mesh_cpu( context* a_context, mesh_data* a_data )
     162nv::keyframed_mesh_cpu::keyframed_mesh_cpu( context* a_context, mesh_data_old* a_data )
    163163        : keyframed_mesh( a_context, a_data )
    164164{
Note: See TracChangeset for help on using the changeset viewer.