- Timestamp:
- 05/20/13 22:22:36 (12 years ago)
- Location:
- trunk/src/gl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gl/texture_atlas.cc
r27 r28 8 8 9 9 #include "nv/logging.hh" 10 #include <iostream> 10 11 11 12 using namespace nv; … … 25 26 int best_index = -1; 26 27 int best_width = INT_MAX; 28 std::cout << "The size is: " << m_nodes.size() << std::endl; 27 29 for( size_t i=0; i < m_nodes.size(); ++i ) 28 30 { -
trunk/src/gl/texture_font.cc
r25 r28 26 26 : m_atlas( atlas ), m_filename(filename), m_size( size ), 27 27 m_height(0), m_linegap(0), m_ascender(0), m_descender(0), 28 m_ rlibrary( nullptr ), m_rface( nullptr ), m_hinting( true ), m_filtering( true)28 m_hinting( true ), m_filtering( true ), m_rlibrary( nullptr ), m_rface( nullptr ) 29 29 { 30 30 size_t hres = 64;
Note: See TracChangeset
for help on using the changeset viewer.