< 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 +1,7 @@
/*
- * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
+ * 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,15 +29,15 @@
* 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 {
+public class RectTile {
GrowableRectArray rects;
DirtyRegion dirtyArea;
- public MaskTile()
+ public RectTile()
{
rects = new GrowableRectArray(128);
dirtyArea = new DirtyRegion();
}
< prev index next >