提交 482654c1 编写于 作者: A azvegint

8042609: Limit splashiness of splash images

Reviewed-by: mschoene, serb
上级 b902ee60
/* /*
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -213,6 +213,14 @@ SplashPaint(Splash * splash, HDC hdc) ...@@ -213,6 +213,14 @@ SplashPaint(Splash * splash, HDC hdc)
void void
SplashRedrawWindow(Splash * splash) SplashRedrawWindow(Splash * splash)
{ {
if (!SplashIsStillLooping(splash)) {
KillTimer(splash->hWnd, 0);
}
if (splash->currentFrame < 0) {
return;
}
SplashUpdateScreenData(splash); SplashUpdateScreenData(splash);
if (splash->isLayered) { if (splash->isLayered) {
BLENDFUNCTION bf; BLENDFUNCTION bf;
...@@ -303,9 +311,6 @@ SplashRedrawWindow(Splash * splash) ...@@ -303,9 +311,6 @@ SplashRedrawWindow(Splash * splash)
time = 0; time = 0;
SetTimer(splash->hWnd, 0, time, NULL); SetTimer(splash->hWnd, 0, time, NULL);
} }
else {
KillTimer(splash->hWnd, 0);
}
} }
void SplashReconfigureNow(Splash * splash) { void SplashReconfigureNow(Splash * splash) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册