mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
small ceanup in hal startup process
svn path=/trunk/; revision=18901
This commit is contained in:
parent
068f8ec126
commit
b8baa8476b
1 changed files with 7 additions and 15 deletions
|
@ -50,8 +50,7 @@ HRESULT Hal_DirectDraw_Initialize (LPDIRECTDRAW7 iface)
|
|||
NULL,
|
||||
NULL ))
|
||||
{
|
||||
OutputDebugString(L"First DdQueryDirectDrawObject failed");
|
||||
return 1;
|
||||
return DD_FALSE;
|
||||
}
|
||||
|
||||
This->HalInfo.vmiData.pvmList = HeapAlloc(GetProcessHeap(), 0, sizeof(VIDMEM) * This->HalInfo.vmiData.dwNumHeaps);
|
||||
|
@ -72,8 +71,7 @@ HRESULT Hal_DirectDraw_Initialize (LPDIRECTDRAW7 iface)
|
|||
This->HalInfo.vmiData.pvmList
|
||||
))
|
||||
{
|
||||
OutputDebugString(L"Second DdQueryDirectDrawObject failed");
|
||||
return 1;
|
||||
return DD_FALSE;
|
||||
}
|
||||
|
||||
/* Copy HalInfo to DirectDrawGlobal (Not complete)*/
|
||||
|
@ -277,12 +275,7 @@ HRESULT Hal_DirectDraw_Initialize (LPDIRECTDRAW7 iface)
|
|||
DriverInfo.dwExpectedSize = sizeof(DDPIXELFORMAT);
|
||||
This->HalInfo.GetDriverInfo( &DriverInfo);
|
||||
|
||||
|
||||
|
||||
/* Setup some info from the callbacks we got */
|
||||
|
||||
/* FIXME do more callbacks and fill the gpl struct */
|
||||
|
||||
DDHAL_GETAVAILDRIVERMEMORYDATA mem;
|
||||
mem.lpDD = &This->DirectDrawGlobal;
|
||||
|
||||
|
@ -291,8 +284,7 @@ HRESULT Hal_DirectDraw_Initialize (LPDIRECTDRAW7 iface)
|
|||
This->DirectDrawGlobal.ddCaps.dwVidMemFree = mem.dwFree;
|
||||
This->DirectDrawGlobal.ddCaps.dwVidMemTotal = mem.dwTotal;
|
||||
|
||||
/* Now all setup for HAL is done and we hopply do not have forget anything */
|
||||
|
||||
/* Now all setup for HAL is done */
|
||||
return DD_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue