mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
Gtk3: fixed StretchMaskBlt(). issue #41384
This commit is contained in:
parent
1d5796a663
commit
0bb0a0625a
@ -4475,12 +4475,10 @@ begin
|
||||
end;
|
||||
ATargetRect := Rect(X, Y, Width + X, Height + Y);
|
||||
ASrcRect := Rect(XSrc, YSrc, SrcWidth + XSrc, SrcHeight + YSrc);
|
||||
|
||||
if (DestContext.OwnsSurface) and (SrcContext.OwnsSurface) or (mask<>0) then
|
||||
if (DestContext.OwnsSurface) and (SrcContext.OwnsSurface) and (mask<>0) then
|
||||
DestContext.drawImage1(@ATargetRect, PgdkPixbuf(SrcContext.CurrentImage.Handle) , @ASrcRect, nil, nil)
|
||||
else
|
||||
DestContext.drawSurface(@ATargetRect,SrcContext.CairoSurface , @ASrcRect, nil, nil);
|
||||
|
||||
Result := True;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user