Commit 78b6402a authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

d2d1: Fix CreateGeometryGroup() prototype.

parent e2733ed7
......@@ -163,10 +163,10 @@ static HRESULT STDMETHODCALLTYPE d2d_factory_CreateEllipseGeometry(ID2D1Factory
}
static HRESULT STDMETHODCALLTYPE d2d_factory_CreateGeometryGroup(ID2D1Factory *iface,
D2D1_FILL_MODE fill_mode, ID2D1Geometry *geometry, UINT32 geometry_count, ID2D1GeometryGroup **group)
D2D1_FILL_MODE fill_mode, ID2D1Geometry **geometries, UINT32 geometry_count, ID2D1GeometryGroup **group)
{
FIXME("iface %p, fill_mode %#x, geometry %p, geometry_count %u, group %p stub!\n",
iface, fill_mode, geometry, geometry_count, group);
FIXME("iface %p, fill_mode %#x, geometries %p, geometry_count %u, group %p stub!\n",
iface, fill_mode, geometries, geometry_count, group);
return E_NOTIMPL;
}
......
......@@ -1206,7 +1206,7 @@ interface ID2D1Factory : IUnknown
);
HRESULT CreateGeometryGroup(
[in] D2D1_FILL_MODE fill_mode,
[in, size_is(geometry_count)] ID2D1Geometry *geometry,
[in, size_is(geometry_count)] ID2D1Geometry **geometries,
[in] UINT32 geometry_count,
[out] ID2D1GeometryGroup **group
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment