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,18 @@
#include "DdsWriter.h"
DdsWriter::~DdsWriter()
= default;
bool DdsWriter::SupportsImageFormat(const ImageFormat* imageFormat)
{
return true;
}
std::string DdsWriter::GetFileExtension()
{
return ".dds";
}
void DdsWriter::DumpImage(FileAPI::IFile* file, Texture* texture)
{
}