Files
bimg/3rdparty/pvrtc/Interval.h
2017-04-02 19:26:02 -07:00

22 lines
251 B
C++

#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;
}
};
}