summaryrefslogtreecommitdiff
path: root/thirdparty/pvrtccompressor/PvrTcDecoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/pvrtccompressor/PvrTcDecoder.h')
-rw-r--r--thirdparty/pvrtccompressor/PvrTcDecoder.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/thirdparty/pvrtccompressor/PvrTcDecoder.h b/thirdparty/pvrtccompressor/PvrTcDecoder.h
new file mode 100644
index 0000000000..1b6fcf964c
--- /dev/null
+++ b/thirdparty/pvrtccompressor/PvrTcDecoder.h
@@ -0,0 +1,25 @@
+//============================================================================
+
+#pragma once
+#include "Point2.h"
+#include "ColorRgba.h"
+
+//============================================================================
+
+namespace Javelin
+{
+//============================================================================
+
+ class PvrTcDecoder
+ {
+ public:
+ static void DecodeRgb4Bpp(ColorRgb<unsigned char>* result, const Point2<int>& size, const void* data);
+ static void DecodeRgba4Bpp(ColorRgba<unsigned char>* result, const Point2<int>& size, const void* data);
+
+ private:
+ static unsigned GetMortonNumber(int x, int y);
+ };
+
+//============================================================================
+}
+//============================================================================