ObjWriting: Add DDS writer basis

This commit is contained in:
Jan
2020-02-19 15:54:10 +01:00
parent b436781632
commit 000022afe9
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#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;
};