Implement FillPoly

This commit is contained in:
2026-02-21 18:05:47 +02:00
parent 4c1f869e32
commit 6119e8dc7a
3 changed files with 90 additions and 8 deletions

View File

@@ -2699,6 +2699,9 @@ BAN::ErrorOr<void> handle_packet(Client& client_info, BAN::ConstByteSpan packet)
case X_PolySegment:
TRY(poly_segment(client_info, packet));
break;
case X_FillPoly:
TRY(fill_poly(client_info, packet));
break;
case X_PolyFillRectangle:
TRY(poly_fill_rectangle(client_info, packet));
break;