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. --- .../doc/html/_i_video_mode_list_8h_source.html | 165 +++++++++++++++++++++ 1 file changed, 165 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/_i_video_mode_list_8h_source.html (limited to 'src/others/irrlicht-1.8.1/doc/html/_i_video_mode_list_8h_source.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/_i_video_mode_list_8h_source.html b/src/others/irrlicht-1.8.1/doc/html/_i_video_mode_list_8h_source.html new file mode 100644 index 0000000..4595e4c --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/_i_video_mode_list_8h_source.html @@ -0,0 +1,165 @@ + + + + +Irrlicht 3D Engine: IVideoModeList.h Source File + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+
+
IVideoModeList.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 __IRR_I_VIDEO_MODE_LIST_H_INCLUDED__
+00006 #define __IRR_I_VIDEO_MODE_LIST_H_INCLUDED__
+00007 
+00008 #include "IReferenceCounted.h"
+00009 #include "dimension2d.h"
+00010 
+00011 namespace irr
+00012 {
+00013 namespace video
+00014 {
+00015 
+00017 
+00023     class IVideoModeList : public virtual IReferenceCounted
+00024     {
+00025     public:
+00026 
+00028 
+00029         virtual s32 getVideoModeCount() const = 0;
+00030 
+00032 
+00034         virtual core::dimension2d<u32> getVideoModeResolution(s32 modeNumber) const = 0;
+00035 
+00037 
+00041         virtual core::dimension2d<u32> getVideoModeResolution(const core::dimension2d<u32>& minSize, const core::dimension2d<u32>& maxSize) const = 0;
+00042 
+00044 
+00046         virtual s32 getVideoModeDepth(s32 modeNumber) const = 0;
+00047 
+00049 
+00050         virtual const core::dimension2d<u32>& getDesktopResolution() const = 0;
+00051 
+00053 
+00054         virtual s32 getDesktopDepth() const = 0;
+00055     };
+00056 
+00057 } // end namespace video
+00058 } // end namespace irr
+00059 
+00060 
+00061 #endif
+00062 
+
+
+ + + + + -- cgit v1.1