Changeset 376 for trunk/src/gfx/texture_atlas.cc
- Timestamp:
- 05/28/15 10:21:10 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.