From 951f6115c16c3ab482c19705344295c90af1625b Mon Sep 17 00:00:00 2001 From: quou Date: Sat, 27 Jul 2024 11:15:21 +1000 Subject: clipping and viewport improvements. --- rect.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rect.h') diff --git a/rect.h b/rect.h index b055607..74f3084 100644 --- a/rect.h +++ b/rect.h @@ -6,6 +6,8 @@ typedef struct { } Rect; Rect* rect_clip(Rect* r, const Rect* c); +Rect* rect_clipr(Rect* r, const int* c); Rect* rect_clips(Rect* r, Rect* s, const Rect* c); +Rect* rect_clipsr(Rect* r, Rect* s, const int* c); #endif -- cgit v1.2.3-54-g00ecf