Changeset 190
- Timestamp:
- 08/04/13 19:25:54 (12 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nv/formats/md3_loader.hh
r189 r190 39 39 40 40 41 class md3_loader : public mesh_loader41 class md3_loader : public keyframed_loader 42 42 { 43 43 public: -
trunk/nv/math.hh
r122 r190 38 38 typedef glm::mat4 mat4; 39 39 40 typedef glm::quat quat; 41 40 42 template <typename T> 41 43 struct datatype_traits -
trunk/nv/types.hh
r121 r190 72 72 template < typename TYPE > struct type_to_enum {}; 73 73 74 template <> struct type_to_enum< long > { static const datatype type = INT; }; 75 template <> struct type_to_enum< unsigned long > { static const datatype type = UINT; }; 74 76 template <> struct type_to_enum< int > { static const datatype type = INT; }; 75 77 template <> struct type_to_enum< unsigned int > { static const datatype type = UINT; };
Note: See TracChangeset
for help on using the changeset viewer.