godot/thirdparty/pvrtccompressor/Interval.h

22 lines
251 B
C++
Raw Normal View History

2015-04-07 02:48:20 +02:00
#pragma once
namespace Javelin {
template<typename T>
class Interval {
public:
T min;
T max;
Interval() {
}
Interval<T> &operator|=(const T &x) {
min.SetMin(x);
max.SetMax(x);
return *this;
}
};
}