mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
13 lines
316 B
C++
13 lines
316 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(std::ostream& stream, const Texture* texture) override;
|
|
};
|