Lines Matching refs:pRect
429 const RECT *pRect,
437 DBG("This=%p pLockedRect=%p pRect=%p[%u..%u,%u..%u] Flags=%s\n", This,
438 pLockedRect, pRect,
439 pRect ? pRect->left : 0, pRect ? pRect->right : 0,
440 pRect ? pRect->top : 0, pRect ? pRect->bottom : 0,
462 if (pRect && This->desc.Pool == D3DPOOL_DEFAULT &&
466 user_assert((pRect->left == 0 && pRect->right == This->desc.Width &&
467 pRect->top == 0 && pRect->bottom == This->desc.Height) ||
468 (!(pRect->left % w) && !(pRect->right % w) &&
469 !(pRect->top % h) && !(pRect->bottom % h)),
482 if (pRect) {
485 rect_to_pipe_box(&box, pRect);