mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-03 00:40:41 +01:00
8310a3fbad
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6000 dfc29bdd-3216-0410-991c-e03cc46cb475
47 lines
972 B
C++
47 lines
972 B
C++
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
#include "CImageWriterPSD.h"
|
|
|
|
#ifdef _IRR_COMPILE_WITH_PSD_WRITER_
|
|
|
|
#include "CImageLoaderPSD.h"
|
|
#include "IWriteFile.h"
|
|
#include "os.h" // for logging
|
|
#include "irrString.h"
|
|
|
|
namespace irr
|
|
{
|
|
namespace video
|
|
{
|
|
|
|
IImageWriter* createImageWriterPSD()
|
|
{
|
|
return new CImageWriterPSD;
|
|
}
|
|
|
|
CImageWriterPSD::CImageWriterPSD()
|
|
{
|
|
#ifdef _DEBUG
|
|
setDebugName("CImageWriterPSD");
|
|
#endif
|
|
}
|
|
|
|
bool CImageWriterPSD::isAWriteableFileExtension(const io::path& filename) const
|
|
{
|
|
return core::hasFileExtension ( filename, "psd" );
|
|
}
|
|
|
|
bool CImageWriterPSD::writeImage(io::IWriteFile *file, IImage *image,u32 param) const
|
|
{
|
|
os::Printer::log("PSD writer not yet implemented. Image not written.", ELL_WARNING);
|
|
return false;
|
|
}
|
|
|
|
} // namespace video
|
|
} // namespace irr
|
|
|
|
#endif
|
|
|