From 7028cbe09c688437910a25623098762bf0fa592d Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 22:28:34 +1000 Subject: Move Irrlicht to src/others. --- .../html/classirr_1_1video_1_1_i_image_loader.html | 238 +++++++++++++++++++++ 1 file changed, 238 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/classirr_1_1video_1_1_i_image_loader.html (limited to 'src/others/irrlicht-1.8.1/doc/html/classirr_1_1video_1_1_i_image_loader.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/classirr_1_1video_1_1_i_image_loader.html b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1video_1_1_i_image_loader.html new file mode 100644 index 0000000..c969f3e --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1video_1_1_i_image_loader.html @@ -0,0 +1,238 @@ + + + + +Irrlicht 3D Engine: irr::video::IImageLoader Class Reference + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+ +
+
irr::video::IImageLoader Class Reference
+
+
+ +

Class which is able to create a image from a file. + More...

+ +

#include <IImageLoader.h>

+
+ + Inheritance diagram for irr::video::IImageLoader:
+
+
+ + +

List of all members.

+

+Public Member Functions

+ +

Detailed Description

+

Class which is able to create a image from a file.

+

If you want the Irrlicht Engine be able to load textures of currently unsupported file formats (e.g .gif), then implement this and add your new Surface loader with IVideoDriver::addExternalImageLoader() to the engine.

+ +

Definition at line 26 of file IImageLoader.h.

+

Member Function Documentation

+ +
+
+ + + + + + + + +
virtual bool irr::video::IImageLoader::isALoadableFileExtension (const io::pathfilename) const [pure virtual]
+
+
+ +

Check if the file might be loaded by this class.

+

Check is based on the file extension (e.g. ".tga")

+
Parameters:
+ + +
filenameName of file to check.
+
+
+
Returns:
True if file seems to be loadable.
+ +
+
+ +
+
+ + + + + + + + +
virtual bool irr::video::IImageLoader::isALoadableFileFormat (io::IReadFilefile) const [pure virtual]
+
+
+ +

Check if the file might be loaded by this class.

+

Check might look into the file.

+
Parameters:
+ + +
fileFile handle to check.
+
+
+
Returns:
True if file seems to be loadable.
+ +
+
+ +
+
+ + + + + + + + +
virtual IImage* irr::video::IImageLoader::loadImage (io::IReadFilefile) const [pure virtual]
+
+
+ +

Creates a surface from the file.

+
Parameters:
+ + +
fileFile handle to check.
+
+
+
Returns:
Pointer to newly created image, or 0 upon error.
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + + -- cgit v1.1