Changeset 367 for trunk/src/formats
- Timestamp:
- 05/16/15 23:12:22 (10 years ago)
- Location:
- trunk/src/formats
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/formats/assimp_loader.cc
r365 r367 7 7 #include "nv/formats/assimp_loader.hh" 8 8 #include <unordered_map> 9 #include <glm/gtx/transform.hpp>10 9 #include "nv/io/std_stream.hh" 11 10 #include "nv/gfx/mesh_creator.hh" -
trunk/src/formats/md2_loader.cc
r365 r367 7 7 #include "nv/formats/md2_loader.hh" 8 8 9 #include <glm/gtc/constants.hpp>10 9 #include "nv/core/logging.hh" 11 10 #include <cstring> -
trunk/src/formats/md3_loader.cc
r352 r367 7 7 #include "nv/formats/md3_loader.hh" 8 8 9 #include <glm/gtc/constants.hpp>10 9 #include "nv/core/logging.hh" 11 10 #include <cstring> -
trunk/src/formats/md5_loader.cc
r323 r367 5 5 #include "nv/formats/md5_loader.hh" 6 6 7 #include <glm/gtc/constants.hpp>8 7 #include "nv/core/logging.hh" 9 8 #include "nv/io/std_stream.hh" 10 #include <cstring>11 9 12 10 using namespace nv; … … 14 12 static void next_line( std::istream& stream ) 15 13 { 16 stream.ignore( std::numeric_limits<std::streamsize>::max(), '\n' );14 stream.ignore( 1024*1024, '\n' ); 17 15 } 18 16 19 17 static inline void discard( std::istream& stream, const std::string& token ) 20 18 { 21 // stream.ignore( std::numeric_limits<std::streamsize>::max(), ' ' );22 19 std::string discarded; 23 20 stream >> discarded;
Note: See TracChangeset
for help on using the changeset viewer.