Lines Matching refs:clipBounds
424 CFX_RectF clipBounds; in OnDrawWidget() local
431 clipBounds = pGraphics->GetClipRect(); in OnDrawWidget()
432 clipCopy = clipBounds; in OnDrawWidget()
436 clipBounds = CFX_RectF(matrix.a, matrix.b, matrix.c, matrix.d); in OnDrawWidget()
445 clipBounds.Intersect(pWidget->GetClientRect()); in OnDrawWidget()
446 if (!clipBounds.IsEmpty()) in OnDrawWidget()
447 DrawChild(pWidget, clipBounds, pGraphics, &matrix); in OnDrawWidget()
473 CFX_RectF clipBounds(rtWidget); in DrawChild() local
480 CFX_PointF pos = widgetMatrix.Transform(clipBounds.TopLeft()); in DrawChild()
481 clipBounds.left = pos.x; in DrawChild()
482 clipBounds.top = pos.y; in DrawChild()
483 clipBounds.Intersect(rtClip); in DrawChild()
484 if (clipBounds.IsEmpty()) in DrawChild()
488 pGraphics->SetClipRect(clipBounds); in DrawChild()
499 DrawChild(child, clipBounds, pGraphics, in DrawChild()