Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
634d1904
Commit
634d1904
authored
Mar 01, 2013
by
Daniel Jelinski
Committed by
Alexandre Julliard
Mar 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/imagelist: Fixed merging of images without mask.
parent
591a31ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
imagelist.c
dlls/comctl32/imagelist.c
+7
-2
No files found.
dlls/comctl32/imagelist.c
View file @
634d1904
...
...
@@ -2134,8 +2134,13 @@ ImageList_Merge (HIMAGELIST himl1, INT i1, HIMAGELIST himl2, INT i2,
BitBlt
(
himlDst
->
hdcImage
,
xOff1
,
yOff1
,
himl1
->
cx
,
himl1
->
cy
,
himl1
->
hdcImage
,
pt1
.
x
,
pt1
.
y
,
SRCCOPY
);
if
(
i2
>=
0
&&
i2
<
himl2
->
cCurImage
)
{
BitBlt
(
himlDst
->
hdcImage
,
xOff2
,
yOff2
,
himl2
->
cx
,
himl2
->
cy
,
himl2
->
hdcMask
,
pt2
.
x
,
pt2
.
y
,
SRCAND
);
BitBlt
(
himlDst
->
hdcImage
,
xOff2
,
yOff2
,
himl2
->
cx
,
himl2
->
cy
,
himl2
->
hdcImage
,
pt2
.
x
,
pt2
.
y
,
SRCPAINT
);
if
(
himl2
->
flags
&
ILC_MASK
)
{
BitBlt
(
himlDst
->
hdcImage
,
xOff2
,
yOff2
,
himl2
->
cx
,
himl2
->
cy
,
himl2
->
hdcMask
,
pt2
.
x
,
pt2
.
y
,
SRCAND
);
BitBlt
(
himlDst
->
hdcImage
,
xOff2
,
yOff2
,
himl2
->
cx
,
himl2
->
cy
,
himl2
->
hdcImage
,
pt2
.
x
,
pt2
.
y
,
SRCPAINT
);
}
else
BitBlt
(
himlDst
->
hdcImage
,
xOff2
,
yOff2
,
himl2
->
cx
,
himl2
->
cy
,
himl2
->
hdcImage
,
pt2
.
x
,
pt2
.
y
,
SRCCOPY
);
}
/* copy mask */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment