Home | History | Annotate | Download | only in libhwcomposer

Lines Matching refs:nwr

559                               hwc_rect_t& nwr)
563 //Initiliaze nwr to first frame
564 nwr.left = list->hwLayers[0].displayFrame.left;
565 nwr.top = list->hwLayers[0].displayFrame.top;
566 nwr.right = list->hwLayers[0].displayFrame.right;
567 nwr.bottom = list->hwLayers[0].displayFrame.bottom;
571 nwr.left = min(nwr.left, displayFrame.left);
572 nwr.top = min(nwr.top, displayFrame.top);
573 nwr.right = max(nwr.right, displayFrame.right);
574 nwr.bottom = max(nwr.bottom, displayFrame.bottom);
578 nwr.left = max(nwr.left, fbDisplayFrame.left);
579 nwr.top = max(nwr.top, fbDisplayFrame.top);
580 nwr.right = min(nwr.right, fbDisplayFrame.right);
581 nwr.bottom = min(nwr.bottom, fbDisplayFrame.bottom);