gdiplus: Stub GdipSetPathGradientLinearBlend.
This commit is contained in:
parent
462c599335
commit
41f4263277
|
@ -1467,6 +1467,19 @@ GpStatus WINGDIPAPI GdipSetPathGradientBlend(GpPathGradient *brush, GDIPCONST RE
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientLinearBlend(GpPathGradient *brush,
|
||||
REAL focus, REAL scale)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
TRACE("(%p,%0.2f,%0.2f)\n", brush, focus, scale);
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientPresetBlend(GpPathGradient *brush,
|
||||
GDIPCONST ARGB *blend, GDIPCONST REAL *pos, INT count)
|
||||
{
|
||||
|
|
|
@ -554,7 +554,7 @@
|
|||
@ stdcall GdipSetPathGradientCenterPointI(ptr ptr)
|
||||
@ stdcall GdipSetPathGradientFocusScales(ptr long long)
|
||||
@ stdcall GdipSetPathGradientGammaCorrection(ptr long)
|
||||
@ stub GdipSetPathGradientLinearBlend
|
||||
@ stdcall GdipSetPathGradientLinearBlend(ptr long long)
|
||||
@ stub GdipSetPathGradientPath
|
||||
@ stdcall GdipSetPathGradientPresetBlend(ptr ptr ptr long)
|
||||
@ stdcall GdipSetPathGradientSigmaBlend(ptr long long)
|
||||
|
|
Loading…
Reference in New Issue