* 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:
Adam Fedor 2005-07-14 21:30:09 +00:00
parent 5a70e75973
commit aac8b84400
2 changed files with 10 additions and 1 deletions

View file

@ -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,

View file

@ -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
}