Changeset 255
- Timestamp:
- 06/13/14 13:50:49 (11 years ago)
- Location:
- trunk/nv
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nv/array2d.hh
r202 r255 18 18 #include <nv/common.hh> 19 19 #include <nv/math.hh> 20 #include <nv/range.hh> 20 21 21 22 namespace nv -
trunk/nv/common.hh
r242 r255 175 175 176 176 template < int a, int b, int c, int d > 177 177 178 struct four_cc 178 179 { 179 180 static const unsigned int value = (((((d << 8) | c) << 8) | b) << 8) | a; 181 }; 182 183 class noncopyable 184 { 185 protected: 186 // noncopyable() = default; 187 // ~noncopyable() = default; 188 // noncopyable( const noncopyable& ) = delete; 189 // noncopyable& operator=( const noncopyable& ) = delete; 190 noncopyable() {} 191 ~noncopyable() {} 192 private: 193 noncopyable( const noncopyable& ); 194 noncopyable& operator=( const noncopyable& ); 180 195 }; 181 196 -
trunk/nv/interface/uniform.hh
r235 r255 70 70 } 71 71 72 const T* get_value() { return m_value; }72 const T* get_value() const { return m_value; } 73 73 virtual ~uniform() 74 74 { -
trunk/nv/position.hh
r172 r255 16 16 #include <nv/common.hh> 17 17 #include <nv/math.hh> 18 #include <nv/range.hh> 18 19 #include <utility> 19 20
Note: See TracChangeset
for help on using the changeset viewer.