Lines Matching refs:nwr
560 hwc_rect_t& nwr)
564 //Initiliaze nwr to first frame
565 nwr.left = list->hwLayers[0].displayFrame.left;
566 nwr.top = list->hwLayers[0].displayFrame.top;
567 nwr.right = list->hwLayers[0].displayFrame.right;
568 nwr.bottom = list->hwLayers[0].displayFrame.bottom;
572 nwr.left = min(nwr.left, displayFrame.left);
573 nwr.top = min(nwr.top, displayFrame.top);
574 nwr.right = max(nwr.right, displayFrame.right);
575 nwr.bottom = max(nwr.bottom, displayFrame.bottom);
579 nwr.left = max(nwr.left, fbDisplayFrame.left);
580 nwr.top = max(nwr.top, fbDisplayFrame.top);
581 nwr.right = min(nwr.right, fbDisplayFrame.right);
582 nwr.bottom = min(nwr.bottom, fbDisplayFrame.bottom);