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
58eb96c9
Commit
58eb96c9
authored
Feb 24, 2011
by
Vincent Povirk
Committed by
Alexandre Julliard
Feb 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Copy the bits on bitmap unlock if the write flag is set.
The read and write flags are independent, so a read flag being set doesn't imply we can quit early.
parent
d086af1d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
image.c
dlls/gdiplus/image.c
+1
-1
image.c
dlls/gdiplus/tests/image.c
+1
-1
No files found.
dlls/gdiplus/image.c
View file @
58eb96c9
...
...
@@ -1048,7 +1048,7 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
if
(
lockeddata
->
Reserved
&
ImageLockModeUserInputBuf
)
return
NotImplemented
;
if
(
lockeddata
->
Reserved
&
ImageLockModeRead
){
if
(
!
(
lockeddata
->
Reserved
&
ImageLockModeWrite
)
){
if
(
!
(
--
bitmap
->
numlocks
))
bitmap
->
lockmode
=
0
;
...
...
dlls/gdiplus/tests/image.c
View file @
58eb96c9
...
...
@@ -657,7 +657,7 @@ static void test_LockBits(void)
stat
=
GdipBitmapGetPixel
(
bm
,
2
,
3
,
&
color
);
expect
(
Ok
,
stat
);
todo_wine
expect
(
0xffff8800
,
color
);
expect
(
0xffff8800
,
color
);
/* write, conversion */
stat
=
GdipBitmapLockBits
(
bm
,
&
rect
,
ImageLockModeWrite
,
PixelFormat32bppARGB
,
&
bd
);
...
...
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