Changeset 376 for trunk/src/gfx
- Timestamp:
- 05/28/15 10:21:10 (10 years ago)
- Location:
- trunk/src/gfx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gfx/image.cc
r374 r376 7 7 using namespace nv; 8 8 9 image::image( glm::ivec2 size, size_t depth )9 image::image( glm::ivec2 size, nv::size_t depth ) 10 10 : m_size( size ), m_depth( depth ), m_data( nullptr ) 11 11 { … … 20 20 21 21 22 image::image( glm::ivec2 size, size_t depth, const uint8 * data, bool reversed )22 image::image( glm::ivec2 size, nv::size_t depth, const uint8 * data, bool reversed ) 23 23 : m_size( size ), m_depth( depth ), m_data( nullptr ) 24 24 { -
trunk/src/gfx/keyframed_mesh.cc
r367 r376 36 36 } 37 37 38 size_t keyframed_mesh::get_max_frames() const38 nv::size_t keyframed_mesh::get_max_frames() const 39 39 { 40 40 return m_frame_count; -
trunk/src/gfx/texture_atlas.cc
r367 r376 11 11 using namespace nv; 12 12 13 texture_atlas::texture_atlas( glm::ivec2 size, size_t depth,size_t border /*= 1*/ )13 texture_atlas::texture_atlas( glm::ivec2 size, nv::size_t depth, nv::size_t border /*= 1*/ ) 14 14 : image( size, depth ), m_used( 0 ), m_border( border ) 15 15 { … … 82 82 } 83 83 84 int texture_atlas::fit( size_t index, glm::ivec2 size )84 int texture_atlas::fit( nv::size_t index, glm::ivec2 size ) 85 85 { 86 86 glm::ivec3 node = m_nodes[ index ];
Note: See TracChangeset
for help on using the changeset viewer.