From f9158592e1478b2013afc7041d9ed041cf2d2f4a Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 13 Jan 2014 19:47:58 +1000 Subject: Update Irrlicht to 1.8.1. Include actual change markers this time. lol --- .../doc/html/_i_image_writer_8h_source.html | 158 +++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 libraries/irrlicht-1.8.1/doc/html/_i_image_writer_8h_source.html (limited to 'libraries/irrlicht-1.8.1/doc/html/_i_image_writer_8h_source.html') diff --git a/libraries/irrlicht-1.8.1/doc/html/_i_image_writer_8h_source.html b/libraries/irrlicht-1.8.1/doc/html/_i_image_writer_8h_source.html new file mode 100644 index 0000000..bd61311 --- /dev/null +++ b/libraries/irrlicht-1.8.1/doc/html/_i_image_writer_8h_source.html @@ -0,0 +1,158 @@ + + + + +Irrlicht 3D Engine: IImageWriter.h Source File + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+
+
IImageWriter.h
+
+
+Go to the documentation of this file.
00001 // Copyright (C) 2002-2012 Nikolaus Gebhardt
+00002 // This file is part of the "Irrlicht Engine".
+00003 // For conditions of distribution and use, see copyright notice in irrlicht.h
+00004 
+00005 #ifndef _I_IMAGE_WRITER_H_INCLUDED__
+00006 #define _I_IMAGE_WRITER_H_INCLUDED__
+00007 
+00008 #include "IReferenceCounted.h"
+00009 #include "irrString.h"
+00010 #include "coreutil.h"
+00011 
+00012 namespace irr
+00013 {
+00014 namespace io
+00015 {
+00016     class IWriteFile;
+00017 } // end namespace io
+00018 
+00019 namespace video
+00020 {
+00021     class IImage;
+00022 
+00023 
+00025 class IImageWriter : public IReferenceCounted
+00026 {
+00027 public:
+00029 
+00031     virtual bool isAWriteableFileExtension(const io::path& filename) const = 0;
+00032 
+00034 
+00038     virtual bool writeImage(io::IWriteFile *file, IImage *image, u32 param = 0) const = 0;
+00039 };
+00040 
+00041 } // namespace video
+00042 } // namespace irr
+00043 
+00044 #endif // _I_IMAGE_WRITER_H_INCLUDED__
+00045 
+
+
+ + + + + -- cgit v1.1