gdiplus: Added GdipS/GetPathGradientGammaCorrection.
This commit is contained in:
parent
15dce3a432
commit
9ea7ef468b
|
@ -84,6 +84,7 @@ GpStatus WINGDIPAPI GdipCreatePathGradient(GDIPCONST GpPointF* points,
|
|||
(*grad)->brush.bt = BrushTypePathGradient;
|
||||
(*grad)->centercolor = 0xffffffff;
|
||||
(*grad)->wrap = wrap;
|
||||
(*grad)->gamma = FALSE;
|
||||
|
||||
return Ok;
|
||||
}
|
||||
|
@ -123,6 +124,7 @@ GpStatus WINGDIPAPI GdipCreatePathGradientFromPath(GDIPCONST GpPath* path,
|
|||
(*grad)->brush.bt = BrushTypePathGradient;
|
||||
(*grad)->centercolor = 0xffffffff;
|
||||
(*grad)->wrap = WrapModeClamp;
|
||||
(*grad)->gamma = FALSE;
|
||||
|
||||
return Ok;
|
||||
}
|
||||
|
@ -166,6 +168,17 @@ GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
|
|||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetPathGradientGammaCorrection(GpPathGradient *grad,
|
||||
BOOL *gamma)
|
||||
{
|
||||
if(!grad || !gamma)
|
||||
return InvalidParameter;
|
||||
|
||||
*gamma = grad->gamma;
|
||||
|
||||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetPathGradientPointCount(GpPathGradient *grad,
|
||||
INT *count)
|
||||
{
|
||||
|
@ -216,6 +229,17 @@ GpStatus WINGDIPAPI GdipSetPathGradientCenterColor(GpPathGradient *grad,
|
|||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientGammaCorrection(GpPathGradient *grad,
|
||||
BOOL gamma)
|
||||
{
|
||||
if(!grad)
|
||||
return InvalidParameter;
|
||||
|
||||
grad->gamma = gamma;
|
||||
|
||||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient *grad,
|
||||
REAL focus, REAL scale)
|
||||
{
|
||||
|
|
|
@ -331,7 +331,7 @@
|
|||
@ stub GdipGetPathGradientCenterPoint
|
||||
@ stub GdipGetPathGradientCenterPointI
|
||||
@ stub GdipGetPathGradientFocusScales
|
||||
@ stub GdipGetPathGradientGammaCorrection
|
||||
@ stdcall GdipGetPathGradientGammaCorrection(ptr ptr)
|
||||
@ stub GdipGetPathGradientPath
|
||||
@ stdcall GdipGetPathGradientPointCount(ptr ptr)
|
||||
@ stub GdipGetPathGradientPresetBlend
|
||||
|
@ -553,7 +553,7 @@
|
|||
@ stub GdipSetPathGradientCenterPoint
|
||||
@ stub GdipSetPathGradientCenterPointI
|
||||
@ stub GdipSetPathGradientFocusScales
|
||||
@ stub GdipSetPathGradientGammaCorrection
|
||||
@ stdcall GdipSetPathGradientGammaCorrection(ptr long)
|
||||
@ stub GdipSetPathGradientLinearBlend
|
||||
@ stub GdipSetPathGradientPath
|
||||
@ stub GdipSetPathGradientPresetBlend
|
||||
|
|
|
@ -97,6 +97,7 @@ struct GpPathGradient{
|
|||
PathData pathdata;
|
||||
ARGB centercolor;
|
||||
GpWrapMode wrap;
|
||||
BOOL gamma;
|
||||
};
|
||||
|
||||
struct GpPath{
|
||||
|
|
|
@ -94,12 +94,14 @@ GpStatus WINGDIPAPI GdipCreatePathGradientFromPath(GDIPCONST GpPath*,
|
|||
GpPathGradient**);
|
||||
GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB,GpSolidFill**);
|
||||
GpStatus WINGDIPAPI GdipGetBrushType(GpBrush*,GpBrushType*);
|
||||
GpStatus WINGDIPAPI GdipGetPathGradientGammaCorrection(GpPathGradient*,BOOL*);
|
||||
GpStatus WINGDIPAPI GdipGetPathGradientPointCount(GpPathGradient*,INT*);
|
||||
GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient*,
|
||||
ARGB*,INT*);
|
||||
GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush*);
|
||||
GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill*,ARGB*);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientCenterColor(GpPathGradient*,ARGB);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientGammaCorrection(GpPathGradient*,BOOL);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientSigmaBlend(GpPathGradient*,REAL,REAL);
|
||||
GpStatus WINGDIPAPI GdipSetPathGradientSurroundColorsWithCount(GpPathGradient*,
|
||||
ARGB*,INT*);
|
||||
|
|
Loading…
Reference in New Issue