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
0c71d5b3
Commit
0c71d5b3
authored
May 08, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
May 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipWarpPath.
parent
8d5c833d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphicspath.c
dlls/gdiplus/graphicspath.c
+10
-0
gdiplusenums.h
include/gdiplusenums.h
+6
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
0c71d5b3
...
...
@@ -621,7 +621,7 @@
@ stdcall GdipTranslateWorldTransform(ptr long long long)
@ stdcall GdipVectorTransformMatrixPoints(ptr ptr long)
@ stdcall GdipVectorTransformMatrixPointsI(ptr ptr long)
@ st
ub GdipWarpPath
@ st
dcall GdipWarpPath(ptr ptr ptr long long long long long long long)
@ stdcall GdipWidenPath(ptr ptr ptr long)
@ stub GdipWindingModeOutline
@ stdcall GdiplusNotificationHook(ptr)
...
...
dlls/gdiplus/graphicspath.c
View file @
0c71d5b3
...
...
@@ -1465,6 +1465,16 @@ GpStatus WINGDIPAPI GdipTransformPath(GpPath *path, GpMatrix *matrix)
path
->
pathdata
.
Count
);
}
GpStatus
WINGDIPAPI
GdipWarpPath
(
GpPath
*
path
,
GpMatrix
*
matrix
,
GDIPCONST
GpPointF
*
points
,
INT
count
,
REAL
x
,
REAL
y
,
REAL
width
,
REAL
height
,
WarpMode
warpmode
,
REAL
flatness
)
{
FIXME
(
"(%p,%p,%p,%i,%0.2f,%0.2f,%0.2f,%0.2f,%i,%0.2f)
\n
"
,
path
,
matrix
,
points
,
count
,
x
,
y
,
width
,
height
,
warpmode
,
flatness
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipWidenPath
(
GpPath
*
path
,
GpPen
*
pen
,
GpMatrix
*
matrix
,
REAL
flatness
)
{
...
...
include/gdiplusenums.h
View file @
0c71d5b3
...
...
@@ -181,6 +181,11 @@ enum ImageType
ImageTypeMetafile
};
enum
WarpMode
{
WarpModePerspective
,
WarpModeBilinear
};
enum
WrapMode
{
WrapModeTile
,
...
...
@@ -436,6 +441,7 @@ typedef enum DashStyle DashStyle;
typedef
enum
MatrixOrder
MatrixOrder
;
typedef
enum
ImageType
ImageType
;
typedef
enum
ImageFlags
ImageFlags
;
typedef
enum
WarpMode
WarpMode
;
typedef
enum
WrapMode
WrapMode
;
typedef
enum
MetafileType
MetafileType
;
typedef
enum
LinearGradientMode
LinearGradientMode
;
...
...
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