mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-17 18:27:56 -05:00
ObjWriting: Add DDS writer basis
This commit is contained in:
12
src/ObjWriting/Image/DdsWriter.h
Normal file
12
src/ObjWriting/Image/DdsWriter.h
Normal 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;
|
||||
};
|
Reference in New Issue
Block a user