- Timestamp:
- 06/03/13 01:33:29 (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nv/gfx/texture_font.hh
r89 r95 8 8 #define NV_GL_TEXTURE_FONT_HH 9 9 10 #include <nv/common.hh> 10 11 #include <string> 11 12 #include <nv/common.hh>13 12 #include <nv/gfx/texture_atlas.hh> 14 13 #include <glm/glm.hpp> -
trunk/nv/interface/image_data.hh
r91 r95 14 14 #define NV_IMAGE_DATA_HH 15 15 16 #include <nv/common.hh> 16 17 #include <algorithm> 17 #include <nv/common.hh>18 18 #include <glm/glm.hpp> 19 19 -
trunk/nv/logger.hh
r48 r95 64 64 explicit logger( int llevel ) 65 65 { 66 level = llevel;66 m_level = llevel; 67 67 } 68 68 -
trunk/nv/logging.hh
r88 r95 39 39 unsigned int get_level() 40 40 { 41 return level;41 return m_level; 42 42 }; 43 43 void set_level( unsigned int level ) 44 44 { 45 level = level;45 m_level = level; 46 46 }; 47 47 virtual void log( log_level level, const std::string& message ) = 0; 48 48 protected: 49 unsigned int level;49 unsigned int m_level; 50 50 }; 51 51 -
trunk/src/gfx/texture_font.cc
r89 r95 4 4 // This file is part of NV Libraries. 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 #include "nv/gfx/texture_font.hh" 7 6 8 #include <sstream> 7 9 #include <stdexcept> 8 9 #include "nv/gfx/texture_font.hh"10 10 #include "nv/lib/freetype2.hh" 11 11
Note: See TracChangeset
for help on using the changeset viewer.