gdiplus: Added GdipSetTextContrast.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 764e9ac..fa90d73 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -2954,6 +2954,18 @@
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,
TextRenderingHint hint)
{