00001 /* 00002 * Image file formats header 00003 * 00004 * This file is part of the "SoftPixel Engine" (Copyright (c) 2008 by Lukas Hermanns) 00005 * See "SoftPixelEngine.hpp" for license information. 00006 */ 00007 00008 #ifndef __SP_IMAGE_FILEFORMATS_H__ 00009 #define __SP_IMAGE_FILEFORMATS_H__ 00010 00011 00012 #include "Base/spStandard.hpp" 00013 00014 /* ImageLoader: */ 00015 00016 #include "FileFormats/Image/spImageLoaderBMP.hpp" // Device Independent Bitmap 00017 #include "FileFormats/Image/spImageLoaderJPG.hpp" // Joint Photographics Experts 00018 #include "FileFormats/Image/spImageLoaderPNG.hpp" // Portable Network Graphics 00019 #include "FileFormats/Image/spImageLoaderTGA.hpp" // Targa True Vision 00020 #include "FileFormats/Image/spImageLoaderPCX.hpp" // Picture Exchange 00021 #include "FileFormats/Image/spImageLoaderDDS.hpp" // Direct Draw Surface 00022 #include "FileFormats/Image/spImageLoaderWAD.hpp" // Where is All the Data 00023 00024 /* ImageSaver: */ 00025 00026 #include "FileFormats/Image/spImageSaverBMP.hpp" 00027 00028 00029 #endif 00030 00031 00032 00033 // ================================================================================