Module: wine Branch: master Commit: 40ba10ed7ae8f17e8bb0ea89ae86437f7d0f3a00 URL: http://source.winehq.org/git/wine.git/?a=commit;h=40ba10ed7ae8f17e8bb0ea89ae...
Author: Huw Davies huw@codeweavers.com Date: Wed Jan 5 11:40:28 2011 +0000
wineps.drv: Explicitly report that we do not support blending.
---
dlls/wineps.drv/init.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/wineps.drv/init.c b/dlls/wineps.drv/init.c index f0c4e18..e67ffe1 100644 --- a/dlls/wineps.drv/init.c +++ b/dlls/wineps.drv/init.c @@ -511,6 +511,8 @@ INT CDECL PSDRV_GetDeviceCaps( PSDRV_PDEVICE *physDev, INT cap ) case VREFRESH: case BLTALIGNMENT: return 0; + case SHADEBLENDCAPS: + return SB_NONE; default: FIXME("(%p): unsupported capability %d, will return 0\n", physDev->hdc, cap ); return 0;