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>
This commit is contained in:
parent
e2733ed7fb
commit
78b6402a08
|
@ -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
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue