Lines Matching refs:rect
138 DECLINLINE(bool) vboxWddmRectIntersection(const RECT *a, const RECT *b, RECT *rect)
142 Assert(rect);
143 rect->left = RT_MAX(a->left, b->left);
144 rect->right = RT_MIN(a->right, b->right);
145 rect->top = RT_MAX(a->top, b->top);
146 rect->bottom = RT_MIN(a->bottom, b->bottom);
147 return (rect->right>rect->left) && (rect->bottom>rect->top);
320 /* the dirty rect info is valid */