diff Render.h @ 1655:a7eebb6ee7a2

Window Resize (change arguments to MM7_Initialize)
author Nomad
date Wed, 18 Sep 2013 11:13:38 +0200
parents 75fafd8ced59
children f1cdf8c062d4
line wrap: on
line diff
--- a/Render.h	Wed Sep 18 11:05:06 2013 +0600
+++ b/Render.h	Wed Sep 18 11:13:38 2013 +0200
@@ -269,7 +269,7 @@
 
   static Render *Create() {return new Render;}
 
-  bool Initialize(bool bWindowed, uint32_t uDefaultDevice,
+  bool Initialize(bool bWindowed, int window_width, int window_height, uint32_t uDefaultDevice,
                   bool bColoredLights, uint32_t uDetailLevel, bool bTinting);
 
 
@@ -457,6 +457,10 @@
   unsigned int uCurrentlyLockedSurfacePitch;
   unsigned __int16 *pCurrentlyLockedSurfaceDataPtr;
   unsigned __int16 *pCurrentlyLockedSoftSurface;
+
+
+  int windowed_mode_width;
+  int windowed_mode_height;
 };
 #pragma pack(pop)