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
1ee8dd89
Commit
1ee8dd89
authored
Nov 28, 2005
by
Huw Davies
Committed by
Alexandre Julliard
Nov 28, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
If the driver doesn't support StretchBlt try to use StretchDIBits
instead.
parent
0b175293
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
5 deletions
+48
-5
bitblt.c
dlls/gdi/bitblt.c
+48
-5
No files found.
dlls/gdi/bitblt.c
View file @
1ee8dd89
...
...
@@ -84,25 +84,68 @@ BOOL WINAPI StretchBlt( HDC hdcDst, INT xDst, INT yDst,
BOOL
ret
=
FALSE
;
DC
*
dcDst
,
*
dcSrc
;
if
((
dcSrc
=
DC_GetDCUpdate
(
hdcSrc
)))
GDI_ReleaseObj
(
hdcSrc
);
if
((
dcDst
=
DC_GetDCUpdate
(
hdcDst
))
&&
dcDst
->
funcs
->
pStretchBlt
)
{
GDI_ReleaseObj
(
hdcDst
);
/* FIXME: there is a race condition here */
if
((
dcDst
=
DC_GetDCUpdate
(
hdcDst
)))
if
((
dcSrc
=
DC_GetDCUpdate
(
hdcSrc
)))
{
dcSrc
=
DC_GetDCPtr
(
hdcSrc
);
dcDst
=
DC_GetDCPtr
(
hdcDst
);
TRACE
(
"%p %d,%d %dx%d -> %p %d,%d %dx%d rop=%06lx
\n
"
,
hdcSrc
,
xSrc
,
ySrc
,
widthSrc
,
heightSrc
,
hdcDst
,
xDst
,
yDst
,
widthDst
,
heightDst
,
rop
);
if
(
dcSrc
)
{
if
(
dcDst
->
funcs
->
pStretchBlt
)
ret
=
dcDst
->
funcs
->
pStretchBlt
(
dcDst
->
physDev
,
xDst
,
yDst
,
widthDst
,
heightDst
,
dcSrc
->
physDev
,
xSrc
,
ySrc
,
widthSrc
,
heightSrc
,
rop
);
GDI_ReleaseObj
(
hdcDst
);
GDI_ReleaseObj
(
hdcSrc
);
}
}
else
if
(
dcDst
&&
dcDst
->
funcs
->
pStretchDIBits
)
{
BITMAP
bm
;
BITMAPINFOHEADER
info_hdr
;
HBITMAP
hbm
;
LPVOID
bits
;
INT
lines
;
GDI_ReleaseObj
(
hdcDst
);
if
(
GetObjectType
(
hdcSrc
)
!=
OBJ_MEMDC
)
return
FALSE
;
GetObjectW
(
GetCurrentObject
(
hdcSrc
,
OBJ_BITMAP
),
sizeof
(
bm
),
&
bm
);
info_hdr
.
biSize
=
sizeof
(
info_hdr
);
info_hdr
.
biWidth
=
bm
.
bmWidth
;
info_hdr
.
biHeight
=
bm
.
bmHeight
;
info_hdr
.
biPlanes
=
1
;
info_hdr
.
biBitCount
=
32
;
info_hdr
.
biCompression
=
BI_RGB
;
info_hdr
.
biSizeImage
=
0
;
info_hdr
.
biXPelsPerMeter
=
0
;
info_hdr
.
biYPelsPerMeter
=
0
;
info_hdr
.
biClrUsed
=
0
;
info_hdr
.
biClrImportant
=
0
;
if
(
!
(
bits
=
HeapAlloc
(
GetProcessHeap
(),
0
,
bm
.
bmHeight
*
bm
.
bmWidth
*
4
)))
return
FALSE
;
/* Select out the src bitmap before calling GetDIBits */
hbm
=
SelectObject
(
hdcSrc
,
GetStockObject
(
DEFAULT_BITMAP
));
GetDIBits
(
hdcSrc
,
hbm
,
0
,
bm
.
bmHeight
,
bits
,
(
BITMAPINFO
*
)
&
info_hdr
,
DIB_RGB_COLORS
);
SelectObject
(
hdcSrc
,
hbm
);
lines
=
StretchDIBits
(
hdcDst
,
xDst
,
yDst
,
widthDst
,
heightDst
,
xSrc
,
ySrc
,
widthSrc
,
heightSrc
,
bits
,
(
BITMAPINFO
*
)
&
info_hdr
,
DIB_RGB_COLORS
,
rop
);
HeapFree
(
GetProcessHeap
(),
0
,
bits
);
return
(
lines
==
bm
.
bmHeight
);
}
else
if
(
dcDst
)
GDI_ReleaseObj
(
hdcDst
);
return
ret
;
}
...
...
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