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/driver_choice_8h_source.html | 164 --------------------- 1 file changed, 164 deletions(-) delete mode 100644 libraries/irrlicht-1.8/doc/html/driver_choice_8h_source.html (limited to 'libraries/irrlicht-1.8/doc/html/driver_choice_8h_source.html') diff --git a/libraries/irrlicht-1.8/doc/html/driver_choice_8h_source.html b/libraries/irrlicht-1.8/doc/html/driver_choice_8h_source.html deleted file mode 100644 index 0e79c68..0000000 --- a/libraries/irrlicht-1.8/doc/html/driver_choice_8h_source.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - -Irrlicht 3D Engine: driverChoice.h Source File - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - - - - - - - -
-
Irrlicht 3D Engine - -
- -
- - - - - - -
-
-
- - - - -
-
- -
-
-
- -
-
-
-
driverChoice.h
-
-
-Go to the documentation of this file.
00001 // Copyright (C) 2009-2012 Christian Stehno
-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 __E_DRIVER_CHOICE_H_INCLUDED__
-00006 #define __E_DRIVER_CHOICE_H_INCLUDED__
-00007 
-00008 #include <iostream>
-00009 #include <cstdio>
-00010 #include "EDriverTypes.h"
-00011 #include "irrTypes.h"
-00012 #include "IrrlichtDevice.h"
-00013 
-00014 namespace irr
-00015 {
-00016 
-00018 static irr::video::E_DRIVER_TYPE driverChoiceConsole(bool allDrivers=true)
-00019 {
-00020     const char* const names[] = {"NullDriver","Software Renderer","Burning's Video","Direct3D 8.1","Direct3D 9.0c","OpenGL 1.x/2.x/3.x"};
-00021     printf("Please select the driver you want:\n");
-00022     irr::u32 i=0;
-00023     for (i=irr::video::EDT_COUNT; i>0; --i)
-00024     {
-00025         if (allDrivers || (irr::IrrlichtDevice::isDriverSupported(irr::video::E_DRIVER_TYPE(i-1))))
-00026             printf(" (%c) %s\n", 'a'+irr::video::EDT_COUNT-i, names[i-1]);
-00027     }
-00028 
-00029     char c;
-00030     std::cin >> c;
-00031     c = irr::video::EDT_COUNT+'a'-c;
-00032 
-00033     for (i=irr::video::EDT_COUNT; i>0; --i)
-00034     {
-00035         if (!(allDrivers || (irr::IrrlichtDevice::isDriverSupported(irr::video::E_DRIVER_TYPE(i-1)))))
-00036             --c;
-00037         if ((char)i==c)
-00038             return irr::video::E_DRIVER_TYPE(i-1);
-00039     }
-00040     return irr::video::EDT_COUNT;
-00041 }
-00042 
-00043 } // end namespace irr
-00044 
-00045 #endif
-
-
- - - - - -- cgit v1.1