mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
13 lines
311 B
C++
13 lines
311 B
C++
#pragma once
|
|
#include "IImageWriter.h"
|
|
|
|
class DdsWriter final : public IImageWriter
|
|
{
|
|
public:
|
|
~DdsWriter() override;
|
|
|
|
bool SupportsImageFormat(const ImageFormat * imageFormat) override;
|
|
std::string GetFileExtension() override;
|
|
void DumpImage(FileAPI::IFile* file, Texture* texture) override;
|
|
};
|