d840165a32
- `etc` module was renamed to `etcpak` and modified to use the new library. - PKM importer is removed in the process, it's obsolete. - Old library `etc2comp` is removed. - S3TC compression no longer done via `squish` (but decompression still is). - Slight modifications to etcpak sources for MinGW compatibility, to fix LLVM `-Wc++11-narrowing` errors, and to allow using vendored or system libpng. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
42 lines
785 B
C++
42 lines
785 B
C++
#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
|