Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_SOFTPIXELDEVICE_IOS_H__
00009 #define __SP_SOFTPIXELDEVICE_IOS_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013
00014 #if defined(SP_PLATFORM_IOS)
00015
00016
00017 #include "Platform/spSoftPixelDevice.hpp"
00018
00019
00020 namespace sp
00021 {
00022
00023
00025 class SP_EXPORT SoftPixelDeviceIOS : public SoftPixelDevice
00026 {
00027
00028 public:
00029
00030 SoftPixelDeviceIOS(
00031 const video::ERenderSystems RendererType, const io::stringc &Title, bool isFullscreen
00032 );
00033 ~SoftPixelDeviceIOS();
00034
00035
00036
00037 bool updateEvents();
00038 void deleteDevice();
00039
00040 private:
00041
00042
00043
00044 bool openGraphicsScreen();
00045 void closeGraphicsScreen();
00046
00047
00048
00049
00050
00051 };
00052
00053
00054 }
00055
00056
00057 #endif
00058
00059 #endif
00060
00061
00062
00063