d2d1: Fix CreateGeometryGroup() prototype.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Nikolay Sivov 2016-11-04 20:04:23 +03:00 committed by Alexandre Julliard
parent e2733ed7fb
commit 78b6402a08
2 changed files with 4 additions and 4 deletions

View File

@ -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;
}

View File

@ -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
);