gdiplus: Added GdipSetTextContrast.
This commit is contained in:
parent
56173d4005
commit
71264731a4
|
@ -593,7 +593,7 @@
|
||||||
@ stdcall GdipSetStringFormatMeasurableCharacterRanges(ptr long ptr)
|
@ stdcall GdipSetStringFormatMeasurableCharacterRanges(ptr long ptr)
|
||||||
@ stdcall GdipSetStringFormatTabStops(ptr long long ptr)
|
@ stdcall GdipSetStringFormatTabStops(ptr long long ptr)
|
||||||
@ stdcall GdipSetStringFormatTrimming(ptr long)
|
@ stdcall GdipSetStringFormatTrimming(ptr long)
|
||||||
@ stub GdipSetTextContrast
|
@ stdcall GdipSetTextContrast(ptr long)
|
||||||
@ stdcall GdipSetTextRenderingHint(ptr long)
|
@ stdcall GdipSetTextRenderingHint(ptr long)
|
||||||
@ stdcall GdipSetTextureTransform(ptr ptr)
|
@ stdcall GdipSetTextureTransform(ptr ptr)
|
||||||
@ stdcall GdipSetTextureWrapMode(ptr long)
|
@ stdcall GdipSetTextureWrapMode(ptr long)
|
||||||
|
|
|
@ -2954,6 +2954,18 @@ GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mod
|
||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics *graphics, UINT contrast)
|
||||||
|
{
|
||||||
|
TRACE("(%p, %d)\n", graphics, contrast);
|
||||||
|
|
||||||
|
if(!graphics)
|
||||||
|
return InvalidParameter;
|
||||||
|
|
||||||
|
graphics->textcontrast = contrast;
|
||||||
|
|
||||||
|
return Ok;
|
||||||
|
}
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics,
|
GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics *graphics,
|
||||||
TextRenderingHint hint)
|
TextRenderingHint hint)
|
||||||
{
|
{
|
||||||
|
|
|
@ -231,6 +231,7 @@ GpStatus WINGDIPAPI GdipSetPageScale(GpGraphics*,REAL);
|
||||||
GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics*,GpUnit);
|
GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics*,GpUnit);
|
||||||
GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics*,PixelOffsetMode);
|
GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics*,PixelOffsetMode);
|
||||||
GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics*,SmoothingMode);
|
GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics*,SmoothingMode);
|
||||||
|
GpStatus WINGDIPAPI GdipSetTextContrast(GpGraphics*,UINT);
|
||||||
GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics*,TextRenderingHint);
|
GpStatus WINGDIPAPI GdipSetTextRenderingHint(GpGraphics*,TextRenderingHint);
|
||||||
GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics*,GpMatrix*);
|
GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics*,GpMatrix*);
|
||||||
GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics*, GpCoordinateSpace, GpCoordinateSpace,
|
GpStatus WINGDIPAPI GdipTransformPoints(GpGraphics*, GpCoordinateSpace, GpCoordinateSpace,
|
||||||
|
|
Loading…
Reference in New Issue