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
public:
//! constructor
CIrrDeviceWinCE(video::E_DRIVER_TYPE deviceType,
core::dimension2d<s32> windowSize, u32 bits,
bool fullscreen, bool stencilbuffer, bool vsync,
bool antiAlias, bool highPrecisionFPU,
HWND window,
CIrrDeviceWinCE(
core::dimension2d<s32> windowSize,
const SIrrlichtCreationParameters& params);
//! destructor
......@@ -235,24 +232,21 @@ namespace irr
private:
//! create the driver
void createDriver(video::E_DRIVER_TYPE driverType,
const core::dimension2d<s32>& windowSize, u32 bits, bool fullscreen,
bool stencilbuffer, bool vsync, bool antiAlias, bool highPrecisionFPU);
void createDriver();
//! switchs to fullscreen
bool switchToFullScreen(s32 width, s32 height, s32 bits);
bool switchToFullScreen();
void getWindowsVersion(core::stringc& version);
void resizeIfNecessary();
HWND HWnd;
CCursorControl* Win32CursorControl;
bool ChangedToFullScreen;
bool FullScreen;
bool Resized;
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