SimpleFbDxe: clear screen on load

This commit is contained in:
Zhuowei Zhang 2019-02-23 16:53:50 -08:00
parent 0659b959d1
commit 40d9b18c4f

View File

@ -497,6 +497,10 @@ SimpleFbDxeInitialize
ASSERT_EFI_ERROR (Status);
// zhuowei: clear the screen
ZeroMem((void*)FrameBufferAddress, FrameBufferSize);
// zhuowei: end
return Status;
}
}