Lines Matching refs:dirty
454 // what is now a dirty region and the repaint is
1091 Rectangle dirty = rm.getDirtyRegion(jview);
1092 if (dirty == null || !dirty.contains(jview.getVisibleRect())) {
1096 flushViewDirtyRegion(g, dirty);
1113 // The visible region is dirty, no point in doing copyArea
1490 * If the repaint manager has a dirty region for the view, the view is
1495 private void flushViewDirtyRegion(Graphics g, Rectangle dirty) {
1497 if(dirty != null && dirty.width > 0 && dirty.height > 0) {
1498 dirty.x += view.getX();
1499 dirty.y += view.getY();
1505 g.clipRect(dirty.x, dirty.y, dirty.width, dirty.height);
1507 // Only paint the dirty region if it is visible.