7029903: Splash screen is not shown in 64-bit Linux with 16-bit color depth

Added Xflush() call after splash screen is updated to ensure update is no stuck in client side buffer until JVM starts up. See JET review request 4154 for details.

Reviewed-by: kevinw, anthony
This commit is contained in:
David Buck 2011-09-26 15:40:05 -07:00
parent 89371ad57d
commit daa2552a25

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -334,6 +334,7 @@ SplashRedrawWindow(Splash * splash) {
XDestroyImage(ximage);
SplashRemoveDecoration(splash);
XMapWindow(splash->display, splash->window);
XFlush(splash->display);
}
void SplashReconfigureNow(Splash * splash) {