Lines Matching refs:rc
336 void FillRect(const RECT *rc, COLORREF color);
342 void Scroll(int x, int y, const RECT *rc);
1045 DWriteContext::FillRect(const RECT *rc, COLORREF color) in FillRect() argument
1052 ::FillRect(mInteropHDC, rc, hbr); in FillRect()
1059 D2D1::RectF(FLOAT(rc->left), FLOAT(rc->top), in FillRect()
1060 FLOAT(rc->right), FLOAT(rc->bottom)), in FillRect()
1110 DWriteContext::Scroll(int x, int y, const RECT *rc) in Scroll() argument
1119 srcRect.left = rc->left; in Scroll()
1120 srcRect.right = rc->right - x; in Scroll()
1121 destPoint.x = rc->left + x; in Scroll()
1125 srcRect.left = rc->left - x; in Scroll()
1126 srcRect.right = rc->right; in Scroll()
1127 destPoint.x = rc->left; in Scroll()
1131 srcRect.top = rc->top; in Scroll()
1132 srcRect.bottom = rc->bottom - y; in Scroll()
1133 destPoint.y = rc->top + y; in Scroll()
1137 srcRect.top = rc->top - y; in Scroll()
1138 srcRect.bottom = rc->bottom; in Scroll()
1139 destPoint.y = rc->top; in Scroll()
1290 DWriteContext_FillRect(DWriteContext *ctx, const RECT *rc, COLORREF color) in DWriteContext_FillRect() argument
1293 ctx->FillRect(rc, color); in DWriteContext_FillRect()
1312 DWriteContext_Scroll(DWriteContext *ctx, int x, int y, const RECT *rc) in DWriteContext_Scroll() argument
1315 ctx->Scroll(x, y, rc); in DWriteContext_Scroll()