Use the info we got from callback for the res in createsurface

svn path=/trunk/; revision=18913
This commit is contained in:
Magnus Olsen 2005-10-31 19:02:09 +00:00
parent 5fad003df8
commit 8e04cb351f

View file

@ -41,9 +41,12 @@ HRESULT WINAPI Main_DDrawSurface_Initialize (LPDIRECTDRAWSURFACE7 iface, LPDIREC
/* surface global struct */
memset(&This->Global, 0, sizeof(DDRAWI_DDRAWSURFACE_GBL));
This->Global.lpDD = &This->owner->DirectDrawGlobal;
This->Global.wHeight = This->owner->Height;
This->Global.wWidth = This->owner->Width;
This->Global.dwLinearSize = This->Global.wWidth * This->owner->Bpp/8;
This->Global.wHeight = This->owner->DirectDrawGlobal.vmiData.dwDisplayHeight;
This->Global.wWidth = This->owner->DirectDrawGlobal.vmiData.dwDisplayWidth;
This->Global.dwLinearSize = This->owner->DirectDrawGlobal.vmiData.lDisplayPitch;
/* surface more struct */
memset(&This->More, 0, sizeof(DDRAWI_DDRAWSURFACE_MORE));