Home | History | Annotate | Download | only in ge

Lines Matching refs:pRect

94 FX_BOOL CFX_RenderDevice::SetClip_Rect(const FX_RECT* pRect) {
96 path.AppendRect((FX_FLOAT)(pRect->left), (FX_FLOAT)(pRect->bottom),
97 (FX_FLOAT)(pRect->right), (FX_FLOAT)(pRect->top));
292 FX_BOOL CFX_RenderDevice::FillRect(const FX_RECT* pRect,
297 if (m_pDeviceDriver->FillRect(pRect, fill_color, alpha_flag, pIccTransform,
305 if (!CreateCompatibleBitmap(&bitmap, pRect->Width(), pRect->Height())) {
308 if (!m_pDeviceDriver->GetDIBits(&bitmap, pRect->left, pRect->top)) {
311 if (!bitmap.CompositeRect(0, 0, pRect->Width(), pRect->Height(), fill_color,
315 FX_RECT src_rect(0, 0, pRect->Width(), pRect->Height());
316 m_pDeviceDriver->SetDIBits(&bitmap, 0, &src_rect, pRect->left, pRect->top,