< prev index next >

src/java.desktop/unix/classes/sun/java2d/xr/RectTile.java

Print this page
rev 48925 : Xrender: Rename MaskTil(eManager) to RectTile(Manager) to avoid confusion later
rev 48932 : XRender: Update+introduce copyright statements + comments + unused import removal

*** 1,7 **** /* ! * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 29,43 **** * Represents a single tile, used to store the rectangles covering the area * of the mask where the tile is located. * * @author Clemens Eisserer */ ! public class MaskTile { GrowableRectArray rects; DirtyRegion dirtyArea; ! public MaskTile() { rects = new GrowableRectArray(128); dirtyArea = new DirtyRegion(); } --- 29,43 ---- * Represents a single tile, used to store the rectangles covering the area * of the mask where the tile is located. * * @author Clemens Eisserer */ ! public class RectTile { GrowableRectArray rects; DirtyRegion dirtyArea; ! public RectTile() { rects = new GrowableRectArray(128); dirtyArea = new DirtyRegion(); }
< prev index next >