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
7fdc0208
Commit
7fdc0208
authored
Aug 28, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Aug 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Return the real image bits from LockBits when possible.
parent
436b3be6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
gdiplus_private.h
dlls/gdiplus/gdiplus_private.h
+2
-0
image.c
dlls/gdiplus/image.c
+29
-0
No files found.
dlls/gdiplus/gdiplus_private.h
View file @
7fdc0208
...
...
@@ -224,6 +224,8 @@ struct GpBitmap{
BYTE
*
bitmapbits
;
/* pointer to the buffer we passed in BitmapLockBits */
HBITMAP
hbitmap
;
HDC
hdc
;
BYTE
*
bits
;
/* actual image bits if this is a DIB */
INT
stride
;
/* stride of bits if this is a DIB */
};
struct
GpCachedBitmap
{
...
...
dlls/gdiplus/image.c
View file @
7fdc0208
...
...
@@ -167,6 +167,23 @@ GpStatus WINGDIPAPI GdipBitmapLockBits(GpBitmap* bitmap, GDIPCONST GpRect* rect,
if
(
bitmap
->
lockmode
)
return
WrongState
;
if
(
bitmap
->
bits
&&
bitmap
->
format
==
format
)
{
/* no conversion is necessary; just use the bits directly */
lockeddata
->
Width
=
act_rect
.
Width
;
lockeddata
->
Height
=
act_rect
.
Height
;
lockeddata
->
PixelFormat
=
format
;
lockeddata
->
Reserved
=
flags
;
lockeddata
->
Stride
=
bitmap
->
stride
;
lockeddata
->
Scan0
=
bitmap
->
bits
+
(
bitspp
/
8
)
*
act_rect
.
X
+
bitmap
->
stride
*
act_rect
.
Y
;
bitmap
->
lockmode
=
flags
;
bitmap
->
numlocks
++
;
return
Ok
;
}
hbm
=
bitmap
->
hbitmap
;
hdc
=
bitmap
->
hdc
;
bm_is_selected
=
(
hdc
!=
0
);
...
...
@@ -263,6 +280,13 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
return
Ok
;
}
if
(
!
bitmap
->
bitmapbits
)
{
/* we passed a direct reference; no need to do anything */
bitmap
->
lockmode
=
0
;
return
Ok
;
}
hbm
=
bitmap
->
hbitmap
;
hdc
=
bitmap
->
hdc
;
bm_is_selected
=
(
hdc
!=
0
);
...
...
@@ -638,6 +662,7 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromHICON(HICON hicon, GpBitmap** bitmap)
(
*
bitmap
)
->
height
=
ipicture_pixel_height
((
*
bitmap
)
->
image
.
picture
);
(
*
bitmap
)
->
hbitmap
=
NULL
;
(
*
bitmap
)
->
hdc
=
NULL
;
(
*
bitmap
)
->
bits
=
NULL
;
DeleteObject
(
iinfo
.
hbmColor
);
DeleteObject
(
iinfo
.
hbmMask
);
...
...
@@ -697,6 +722,7 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromScan0(INT width, INT height, INT stride,
if
(
!
hbitmap
)
return
GenericError
;
/* copy bits to the dib if necessary */
/* FIXME: should reference the bits instead of copying them */
if
(
scan0
)
for
(
i
=
0
;
i
<
height
;
i
++
)
memcpy
(
bits
+
i
*
dib_stride
,
scan0
+
i
*
stride
,
row_size
);
...
...
@@ -716,6 +742,8 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromScan0(INT width, INT height, INT stride,
(
*
bitmap
)
->
image
.
picture
=
NULL
;
(
*
bitmap
)
->
hbitmap
=
hbitmap
;
(
*
bitmap
)
->
hdc
=
NULL
;
(
*
bitmap
)
->
bits
=
bits
;
(
*
bitmap
)
->
stride
=
dib_stride
;
return
Ok
;
}
...
...
@@ -1293,6 +1321,7 @@ static GpStatus decode_image_olepicture_bitmap(IStream* stream, REFCLSID clsid,
(
*
((
GpBitmap
**
)
image
))
->
hbitmap
=
hbm
;
(
*
((
GpBitmap
**
)
image
))
->
hdc
=
hdc
;
(
*
((
GpBitmap
**
)
image
))
->
bits
=
NULL
;
bmch
=
(
BITMAPCOREHEADER
*
)
(
&
pbmi
->
bmiHeader
);
bmch
->
bcSize
=
sizeof
(
BITMAPCOREHEADER
);
...
...
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