Lines Matching refs:srcRect
1115 D2D1_RECT_U srcRect; in Scroll() local
1119 srcRect.left = rc->left; in Scroll()
1120 srcRect.right = rc->right - x; in Scroll()
1125 srcRect.left = rc->left - x; in Scroll()
1126 srcRect.right = rc->right; in Scroll()
1131 srcRect.top = rc->top; in Scroll()
1132 srcRect.bottom = rc->bottom - y; in Scroll()
1137 srcRect.top = rc->top - y; in Scroll()
1138 srcRect.bottom = rc->bottom; in Scroll()
1141 mBitmap->CopyFromRenderTarget(&destPoint, mRT, &srcRect); in Scroll()
1145 FLOAT(destPoint.x + srcRect.right - srcRect.left), in Scroll()
1146 FLOAT(destPoint.y + srcRect.bottom - srcRect.top) in Scroll()