Commit 6b09fabb authored by hybrid's avatar hybrid

Also updated the WinCE device.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1371 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 32ae11b4
This diff is collapsed.
...@@ -26,11 +26,8 @@ namespace irr ...@@ -26,11 +26,8 @@ namespace irr
public: public:
//! constructor //! constructor
CIrrDeviceWinCE(video::E_DRIVER_TYPE deviceType, CIrrDeviceWinCE(
core::dimension2d<s32> windowSize, u32 bits, core::dimension2d<s32> windowSize,
bool fullscreen, bool stencilbuffer, bool vsync,
bool antiAlias, bool highPrecisionFPU,
HWND window,
const SIrrlichtCreationParameters& params); const SIrrlichtCreationParameters& params);
//! destructor //! destructor
...@@ -235,24 +232,21 @@ namespace irr ...@@ -235,24 +232,21 @@ namespace irr
private: private:
//! create the driver //! create the driver
void createDriver(video::E_DRIVER_TYPE driverType, void createDriver();
const core::dimension2d<s32>& windowSize, u32 bits, bool fullscreen,
bool stencilbuffer, bool vsync, bool antiAlias, bool highPrecisionFPU);
//! switchs to fullscreen //! switchs to fullscreen
bool switchToFullScreen(s32 width, s32 height, s32 bits); bool switchToFullScreen();
void getWindowsVersion(core::stringc& version); void getWindowsVersion(core::stringc& version);
void resizeIfNecessary(); void resizeIfNecessary();
HWND HWnd; HWND HWnd;
CCursorControl* Win32CursorControl;
bool ChangedToFullScreen; bool ChangedToFullScreen;
bool FullScreen;
bool Resized; bool Resized;
bool ExternalWindow; bool ExternalWindow;
CCursorControl* Win32CursorControl;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment