Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
f8826a85
Commit
f8826a85
authored
16 years ago
by
Nikolay Sivov
Committed by
Alexandre Julliard
16 years ago
Browse files
Options
Downloads
Patches
Plain Diff
gdiplus: GdipSetPathMarker implementation.
parent
143ebd60
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/gdiplus/gdiplus.spec
+1
-1
1 addition, 1 deletion
dlls/gdiplus/gdiplus.spec
dlls/gdiplus/graphicspath.c
+16
-0
16 additions, 0 deletions
dlls/gdiplus/graphicspath.c
include/gdiplusflat.h
+1
-0
1 addition, 0 deletions
include/gdiplusflat.h
with
18 additions
and
1 deletion
dlls/gdiplus/gdiplus.spec
+
1
−
1
View file @
f8826a85
...
...
@@ -561,7 +561,7 @@
@ stdcall GdipSetPathGradientSurroundColorsWithCount(ptr ptr ptr)
@ stub GdipSetPathGradientTransform
@ stdcall GdipSetPathGradientWrapMode(ptr long)
@ st
ub
GdipSetPathMarker
@ st
dcall
GdipSetPathMarker
(ptr)
@ stdcall GdipSetPenBrushFill(ptr ptr)
@ stdcall GdipSetPenColor(ptr long)
@ stub GdipSetPenCompoundArray
...
...
This diff is collapsed.
Click to expand it.
dlls/gdiplus/graphicspath.c
+
16
−
0
View file @
f8826a85
...
...
@@ -833,3 +833,19 @@ GpStatus WINGDIPAPI GdipAddPathRectanglesI(GpPath *path, GDIPCONST GpRect *rects
return
retstat
;
}
GpStatus
WINGDIPAPI
GdipSetPathMarker
(
GpPath
*
path
)
{
INT
count
;
if
(
!
path
)
return
InvalidParameter
;
count
=
path
->
pathdata
.
Count
;
/* set marker flag */
if
(
count
>
0
)
path
->
pathdata
.
Types
[
count
-
1
]
|=
PathPointTypePathMarker
;
return
Ok
;
}
This diff is collapsed.
Click to expand it.
include/gdiplusflat.h
+
1
−
0
View file @
f8826a85
...
...
@@ -146,6 +146,7 @@ GpStatus WINGDIPAPI GdipSetCompositingQuality(GpGraphics*,CompositingQuality);
GpStatus
WINGDIPAPI
GdipSetInterpolationMode
(
GpGraphics
*
,
InterpolationMode
);
GpStatus
WINGDIPAPI
GdipSetPageScale
(
GpGraphics
*
,
REAL
);
GpStatus
WINGDIPAPI
GdipSetPageUnit
(
GpGraphics
*
,
GpUnit
);
GpStatus
WINGDIPAPI
GdipSetPathMarker
(
GpPath
*
);
GpStatus
WINGDIPAPI
GdipSetPixelOffsetMode
(
GpGraphics
*
,
PixelOffsetMode
);
GpStatus
WINGDIPAPI
GdipSetSmoothingMode
(
GpGraphics
*
,
SmoothingMode
);
GpStatus
WINGDIPAPI
GdipSetTextRenderingHint
(
GpGraphics
*
,
TextRenderingHint
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment