summaryrefslogtreecommitdiff
path: root/thirdparty/etcpak/DataProvider.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/etcpak/DataProvider.hpp')
-rw-r--r--thirdparty/etcpak/DataProvider.hpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/thirdparty/etcpak/DataProvider.hpp b/thirdparty/etcpak/DataProvider.hpp
deleted file mode 100644
index e773801ed6..0000000000
--- a/thirdparty/etcpak/DataProvider.hpp
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef __DATAPROVIDER_HPP__
-#define __DATAPROVIDER_HPP__
-
-#include <memory>
-#include <stdint.h>
-#include <vector>
-
-#include "Bitmap.hpp"
-
-struct DataPart
-{
- const uint32_t* src;
- unsigned int width;
- unsigned int lines;
- unsigned int offset;
-};
-
-class DataProvider
-{
-public:
- DataProvider( const char* fn, bool mipmap, bool bgr );
- ~DataProvider();
-
- unsigned int NumberOfParts() const;
-
- DataPart NextPart();
-
- bool Alpha() const { return m_bmp[0]->Alpha(); }
- const v2i& Size() const { return m_bmp[0]->Size(); }
- const Bitmap& ImageData() const { return *m_bmp[0]; }
-
-private:
- std::vector<std::unique_ptr<Bitmap>> m_bmp;
- Bitmap* m_current;
- unsigned int m_offset;
- unsigned int m_lines;
- bool m_mipmap;
- bool m_done;
-};
-
-#endif