gdi32: Move region helper functions to objects.c.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2021-07-07 15:03:25 +02:00 committed by Alexandre Julliard
parent 0a42d6a915
commit b2e70ed03a
2 changed files with 28 additions and 49 deletions

View file

@ -251,3 +251,31 @@ HRGN WINAPI ExtCreateRegion( const XFORM *xform, DWORD count, const RGNDATA *dat
return NtGdiExtCreateRegion( xform, count, data );
}
/***********************************************************************
* CreateRectRgnIndirect (GDI32.@)
*
* Creates a simple rectangular region.
*/
HRGN WINAPI CreateRectRgnIndirect( const RECT* rect )
{
return NtGdiCreateRectRgn( rect->left, rect->top, rect->right, rect->bottom );
}
/***********************************************************************
* CreateEllipticRgnIndirect (GDI32.@)
*
* Creates an elliptical region.
*/
HRGN WINAPI CreateEllipticRgnIndirect( const RECT *rect )
{
return NtGdiCreateEllipticRgn( rect->left, rect->top, rect->right, rect->bottom );
}
/***********************************************************************
* CreatePolygonRgn (GDI32.@)
*/
HRGN WINAPI CreatePolygonRgn( const POINT *points, INT count, INT mode )
{
return CreatePolyPolygonRgn( points, &count, 1, mode );
}

View file

@ -622,24 +622,6 @@ HRGN WINAPI NtGdiCreateRectRgn( INT left, INT top, INT right, INT bottom )
}
/***********************************************************************
* CreateRectRgnIndirect (GDI32.@)
*
* Creates a simple rectangular region.
*
* PARAMS
* rect [I] Coordinates of rectangular region.
*
* RETURNS
* Success: Handle to region.
* Failure: NULL.
*/
HRGN WINAPI CreateRectRgnIndirect( const RECT* rect )
{
return NtGdiCreateRectRgn( rect->left, rect->top, rect->right, rect->bottom );
}
/***********************************************************************
* NtGdiSetRectRgn (win32u.@)
*
@ -822,28 +804,6 @@ HRGN WINAPI NtGdiCreateEllipticRgn( INT left, INT top, INT right, INT bottom )
}
/***********************************************************************
* CreateEllipticRgnIndirect (GDI32.@)
*
* Creates an elliptical region.
*
* PARAMS
* rect [I] Pointer to bounding rectangle of the ellipse.
*
* RETURNS
* Success: Handle to region.
* Failure: NULL.
*
* NOTES
* This is a special case of CreateRoundRectRgn() where the width of the
* ellipse at each corner is equal to the width the rectangle and
* the same for the height.
*/
HRGN WINAPI CreateEllipticRgnIndirect( const RECT *rect )
{
return NtGdiCreateEllipticRgn( rect->left, rect->top, rect->right, rect->bottom );
}
/***********************************************************************
* NtGdiGetRegionData (win32u.@)
*
@ -2741,12 +2701,3 @@ HRGN WINAPI CreatePolyPolygonRgn( const POINT *pts, const INT *count, INT nbpoly
{
return create_polypolygon_region( pts, count, nbpolygons, mode, NULL );
}
/***********************************************************************
* CreatePolygonRgn (GDI32.@)
*/
HRGN WINAPI CreatePolygonRgn( const POINT *points, INT count, INT mode )
{
return create_polypolygon_region( points, &count, 1, mode, NULL );
}