gdiplus: Add stub for GdipSetPathGradientPath.
Signed-off-by: André Hentschel <nerv@dawncrow.de> Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cc893cdcab
commit
e7b16bcb57
|
@ -1686,6 +1686,18 @@ GpStatus WINGDIPAPI GdipSetPathGradientGammaCorrection(GpPathGradient *grad,
|
|||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientPath(GpPathGradient *grad, GDIPCONST GpPath *path)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
TRACE("(%p, %p)\n", grad, path);
|
||||
|
||||
if (!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient *grad,
|
||||
REAL focus, REAL scale)
|
||||
{
|
||||
|
|
|
@ -534,7 +534,7 @@
|
|||
534 stdcall GdipSetPathGradientFocusScales(ptr float float)
|
||||
535 stdcall GdipSetPathGradientGammaCorrection(ptr long)
|
||||
536 stdcall GdipSetPathGradientLinearBlend(ptr float float)
|
||||
537 stub GdipSetPathGradientPath
|
||||
537 stdcall GdipSetPathGradientPath(ptr ptr)
|
||||
538 stdcall GdipSetPathGradientPresetBlend(ptr ptr ptr long)
|
||||
539 stdcall GdipSetPathGradientSigmaBlend(ptr float float)
|
||||
540 stdcall GdipSetPathGradientSurroundColorsWithCount(ptr ptr ptr)
|
||||
|
|
|
@ -589,6 +589,7 @@ GpStatus WINGDIPAPI GdipSetPathGradientCenterPoint(GpPathGradient*,GpPointF*);
|
|||
GpStatus WINGDIPAPI GdipSetPathGradientCenterPointI(GpPathGradient*,GpPoint*);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientFocusScales(GpPathGradient*,REAL,REAL);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientGammaCorrection(GpPathGradient*,BOOL);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientPath(GpPathGradient*,GDIPCONST GpPath*);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient*,REAL,REAL);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient*,
|
||||
GDIPCONST ARGB*,INT*);
|
||||
|
|
Loading…
Reference in New Issue