mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
* Source/winlib/WIN32GState.m ([WIN32GState -compositeGState:...]): Fall
through to default operation if alpha blend not sucessful. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@21476 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5a70e75973
commit
aac8b84400
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-07-14 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/winlib/WIN32GState.m ([WIN32GState -compositeGState:...]): Fall
|
||||
through to default operation if alpha blend not sucessful.
|
||||
|
||||
2005-07-09 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/gsc/GSGState.h,
|
||||
|
|
|
@ -266,7 +266,11 @@ RECT GSXWindowRectToMS(WIN32GState *s, NSRect r)
|
|||
sourceDC,
|
||||
rectFrom.left, rectFrom.top,
|
||||
(rectFrom.right - rectFrom.left), h, blendFunc);
|
||||
break;
|
||||
/* There is actually a very real chance this could fail, even on
|
||||
computers that supposedly support it. It's not known why it
|
||||
fails though... */
|
||||
if (success)
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue