Ellipse function gdi32

bool Ellipse(
  1. HDC hdc,
  2. int left,
  3. int top,
  4. int right,
  5. int bottom,
)

Creates a D2D1_ELLIPSE structure.

To learn more, see learn.microsoft.com/windows/win32/api/d2d1helper/nf-d2d1helper-ellipse.

Implementation

@pragma('vm:prefer-inline')
bool Ellipse(HDC hdc, int left, int top, int right, int bottom) =>
    _Ellipse(hdc, left, top, right, bottom) != FALSE;