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
e113b094
Commit
e113b094
authored
Feb 09, 1999
by
Jason McMullan
Committed by
Alexandre Julliard
Feb 09, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds support for EMR_STRETCHDIBITS in EMFs.
parent
2b9ef809
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
enhmetafile.c
objects/enhmetafile.c
+22
-0
No files found.
objects/enhmetafile.c
View file @
e113b094
...
...
@@ -399,6 +399,28 @@ BOOL32 WINAPI PlayEnhMetaFileRecord(
break;
}
#endif
case
EMR_STRETCHDIBITS
:
{
LONG
xDest
=
mr
->
dParm
[
4
];
LONG
yDest
=
mr
->
dParm
[
5
];
LONG
xSrc
=
mr
->
dParm
[
6
];
LONG
ySrc
=
mr
->
dParm
[
7
];
LONG
cxSrc
=
mr
->
dParm
[
8
];
LONG
cySrc
=
mr
->
dParm
[
9
];
DWORD
offBmiSrc
=
mr
->
dParm
[
10
];
DWORD
offBitsSrc
=
mr
->
dParm
[
12
];
DWORD
iUsageSrc
=
mr
->
dParm
[
14
];
DWORD
dwRop
=
mr
->
dParm
[
15
];
LONG
cxDest
=
mr
->
dParm
[
16
];
LONG
cyDest
=
mr
->
dParm
[
17
];
StretchDIBits32
(
hdc
,
xDest
,
yDest
,
cxDest
,
cyDest
,
xSrc
,
ySrc
,
cxSrc
,
cySrc
,
((
char
*
)
mr
)
+
offBitsSrc
,
(
const
BITMAPINFO
*
)(((
char
*
)
mr
)
+
offBmiSrc
),
iUsageSrc
,
dwRop
);
break
;
}
case
EMR_EXTTEXTOUTW
:
{
/* 0-3: ??? */
...
...
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