gdiplus: Added GdipSetPathGradientSigmaBlend stub.
This commit is contained in:
parent
03af4ed338
commit
15dce3a432
@ -216,6 +216,20 @@ GpStatus WINGDIPAPI GdipSetPathGradientCenterColor(GpPathGradient *grad,
|
|||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient *grad,
|
||||||
|
REAL focus, REAL scale)
|
||||||
|
{
|
||||||
|
static int calls;
|
||||||
|
|
||||||
|
if(!grad || focus < 0.0 || focus > 1.0 || scale < 0.0 || scale > 1.0)
|
||||||
|
return InvalidParameter;
|
||||||
|
|
||||||
|
if(!(calls++))
|
||||||
|
FIXME("not implemented\n");
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient
|
GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient
|
||||||
*grad, ARGB *argb, INT *count)
|
*grad, ARGB *argb, INT *count)
|
||||||
{
|
{
|
||||||
|
@ -557,7 +557,7 @@
|
|||||||
@ stub GdipSetPathGradientLinearBlend
|
@ stub GdipSetPathGradientLinearBlend
|
||||||
@ stub GdipSetPathGradientPath
|
@ stub GdipSetPathGradientPath
|
||||||
@ stub GdipSetPathGradientPresetBlend
|
@ stub GdipSetPathGradientPresetBlend
|
||||||
@ stub GdipSetPathGradientSigmaBlend
|
@ stdcall GdipSetPathGradientSigmaBlend(ptr long long)
|
||||||
@ stdcall GdipSetPathGradientSurroundColorsWithCount(ptr ptr ptr)
|
@ stdcall GdipSetPathGradientSurroundColorsWithCount(ptr ptr ptr)
|
||||||
@ stub GdipSetPathGradientTransform
|
@ stub GdipSetPathGradientTransform
|
||||||
@ stdcall GdipSetPathGradientWrapMode(ptr long)
|
@ stdcall GdipSetPathGradientWrapMode(ptr long)
|
||||||
|
@ -100,6 +100,7 @@ GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient*,
|
|||||||
GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush*);
|
GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush*);
|
||||||
GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill*,ARGB*);
|
GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill*,ARGB*);
|
||||||
GpStatus WINGDIPAPI GdipSetPathGradientCenterColor(GpPathGradient*,ARGB);
|
GpStatus WINGDIPAPI GdipSetPathGradientCenterColor(GpPathGradient*,ARGB);
|
||||||
|
GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient*,REAL,REAL);
|
||||||
GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient*,
|
GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient*,
|
||||||
ARGB*,INT*);
|
ARGB*,INT*);
|
||||||
GpStatus WINGDIPAPI GdipSetPathGradientWrapMode(GpPathGradient*,GpWrapMode);
|
GpStatus WINGDIPAPI GdipSetPathGradientWrapMode(GpPathGradient*,GpWrapMode);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user