Home | History | Annotate | Download | only in win

Lines Matching refs:newRegion

804     HRGN newRegion = ::CreateRectRgn(dirtyRect.x(), dirtyRect.y(),
806 addToDirtyRegion(newRegion);
809 void WebView::addToDirtyRegion(HRGN newRegion)
819 ::CombineRgn(combinedRegion, m_backingStoreDirtyRegion->handle(), newRegion, RGN_OR);
820 ::DeleteObject(newRegion);
823 m_backingStoreDirtyRegion = RefCountedHRGN::create(newRegion);