Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
17621fb7
Commit
17621fb7
authored
Apr 30, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implemented GdipSetPathGradientCenterPointI.
parent
510c26ac
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
brush.c
dlls/gdiplus/brush.c
+14
-0
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/brush.c
View file @
17621fb7
...
...
@@ -642,6 +642,20 @@ GpStatus WINGDIPAPI GdipSetPathGradientCenterPoint(GpPathGradient *grad,
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipSetPathGradientCenterPointI
(
GpPathGradient
*
grad
,
GpPoint
*
point
)
{
GpPointF
ptf
;
if
(
!
point
)
return
InvalidParameter
;
ptf
.
X
=
(
REAL
)
point
->
X
;
ptf
.
Y
=
(
REAL
)
point
->
Y
;
return
GdipSetPathGradientCenterPoint
(
grad
,
&
ptf
);
}
GpStatus
WINGDIPAPI
GdipSetPathGradientFocusScales
(
GpPathGradient
*
grad
,
REAL
x
,
REAL
y
)
{
...
...
dlls/gdiplus/gdiplus.spec
View file @
17621fb7
...
...
@@ -551,7 +551,7 @@
@ stub GdipSetPathGradientBlend
@ stdcall GdipSetPathGradientCenterColor(ptr long)
@ stdcall GdipSetPathGradientCenterPoint(ptr ptr)
@ st
ub GdipSetPathGradientCenterPointI
@ st
dcall GdipSetPathGradientCenterPointI(ptr ptr)
@ stdcall GdipSetPathGradientFocusScales(ptr long long)
@ stdcall GdipSetPathGradientGammaCorrection(ptr long)
@ stub GdipSetPathGradientLinearBlend
...
...
include/gdiplusflat.h
View file @
17621fb7
...
...
@@ -186,6 +186,7 @@ GpStatus WINGDIPAPI GdipSetLineWrapMode(GpLineGradient*,GpWrapMode);
GpStatus
WINGDIPAPI
GdipSetLineColors
(
GpLineGradient
*
,
ARGB
,
ARGB
);
GpStatus
WINGDIPAPI
GdipSetPathGradientCenterColor
(
GpPathGradient
*
,
ARGB
);
GpStatus
WINGDIPAPI
GdipSetPathGradientCenterPoint
(
GpPathGradient
*
,
GpPointF
*
);
GpStatus
WINGDIPAPI
GdipSetPathGradientCenterPointI
(
GpPathGradient
*
,
GpPoint
*
);
GpStatus
WINGDIPAPI
GdipSetPathGradientFocusScales
(
GpPathGradient
*
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipSetPathGradientGammaCorrection
(
GpPathGradient
*
,
BOOL
);
GpStatus
WINGDIPAPI
GdipSetPathGradientSigmaBlend
(
GpPathGradient
*
,
REAL
,
REAL
);
...
...
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