mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 08:05:45 +00:00
17 lines
396 B
C++
17 lines
396 B
C++
#pragma once
|
|
#include "IImageData.h"
|
|
|
|
class ImageDataIWI final : public IImageData
|
|
{
|
|
public:
|
|
ImageFormat* GetFormat() override;
|
|
|
|
size_t GetSizeOfMipLevel(unsigned mipLevel) override;
|
|
uint8_t* GetDataForMipLevel(unsigned mipLevel) override;
|
|
|
|
bool HasMipMaps() override;
|
|
int GetMipMapCount() override;
|
|
void GenerateMipMaps() override;
|
|
void DiscardMipMaps() override;
|
|
};
|