From 2e4b6052724d4e8a1aed2acc9ad97ec1e8c7642d Mon Sep 17 00:00:00 2001 From: Yonit Halperin Date: Thu, 29 Mar 2012 15:49:12 +0200 Subject: rect: add rect_contains --- common/rect.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'common/rect.h') diff --git a/common/rect.h b/common/rect.h index a63d785..655e9e8 100644 --- a/common/rect.h +++ b/common/rect.h @@ -74,6 +74,12 @@ static INLINE int rect_is_same_size(const SpiceRect *r1, const SpiceRect *r2) r1->bottom - r1->top == r2->bottom - r2->top; } +static INLINE int rect_contains(const SpiceRect *big, const SpiceRect *small) +{ + return big->left <= small->left && big->right >= small->right && + big->top <= small->top && big->bottom >= small->bottom; +} + SPICE_END_DECLS #ifdef __cplusplus @@ -113,6 +119,11 @@ static inline int rect_is_same_size(const SpiceRect& r1, const SpiceRect& r2) return rect_is_same_size(&r1, &r2); } +static inline int rect_contains(const SpiceRect& big, const SpiceRect& small) +{ + return rect_contains(&big, &small); +} + #endif /* __cplusplus */ #endif -- cgit