Changeset 28 for trunk/src


Ignore:
Timestamp:
05/20/13 22:22:36 (12 years ago)
Author:
melon
Message:

Just some reformating, got rid of compiler warnings.

Location:
trunk/src/gl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gl/texture_atlas.cc

    r27 r28  
    88
    99#include "nv/logging.hh"
     10#include <iostream>
    1011
    1112using namespace nv;
     
    2526        int best_index  = -1;
    2627        int best_width  = INT_MAX;
     28        std::cout << "The size is: " << m_nodes.size() << std::endl;
    2729        for( size_t i=0; i < m_nodes.size(); ++i )
    2830        {
  • trunk/src/gl/texture_font.cc

    r25 r28  
    2626        : m_atlas( atlas ), m_filename(filename), m_size( size ),
    2727        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 )
    2929{
    3030        size_t hres = 64;
Note: See TracChangeset for help on using the changeset viewer.