summaryrefslogtreecommitdiff
path: root/thirdparty/etcpak/BitmapDownsampled.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/etcpak/BitmapDownsampled.hpp')
-rw-r--r--thirdparty/etcpak/BitmapDownsampled.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/thirdparty/etcpak/BitmapDownsampled.hpp b/thirdparty/etcpak/BitmapDownsampled.hpp
new file mode 100644
index 0000000000..b7313808df
--- /dev/null
+++ b/thirdparty/etcpak/BitmapDownsampled.hpp
@@ -0,0 +1,13 @@
+#ifndef __DARKRL__BITMAPDOWNSAMPLED_HPP__
+#define __DARKRL__BITMAPDOWNSAMPLED_HPP__
+
+#include "Bitmap.hpp"
+
+class BitmapDownsampled : public Bitmap
+{
+public:
+ BitmapDownsampled( const Bitmap& bmp, unsigned int lines );
+ ~BitmapDownsampled();
+};
+
+#endif