gdiplus: Stub GdipSetRenderingOrigin.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 9ba7d47..68d71c5 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -3241,6 +3241,18 @@
return Ok;
}
+GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
+{
+ static int calls;
+
+ TRACE("(%p,%i,%i)\n", graphics, x, y);
+
+ if (!(calls++))
+ FIXME("not implemented\n");
+
+ return NotImplemented;
+}
+
GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode)
{
TRACE("(%p, %d)\n", graphics, mode);