summaryrefslogtreecommitdiff
path: root/thirdparty/pvrtccompressor/Interval.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/pvrtccompressor/Interval.h')
-rw-r--r--thirdparty/pvrtccompressor/Interval.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/thirdparty/pvrtccompressor/Interval.h b/thirdparty/pvrtccompressor/Interval.h
deleted file mode 100644
index a7252e8375..0000000000
--- a/thirdparty/pvrtccompressor/Interval.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#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;
- }
-};
-
-}