Searched defs:touchedTile (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesCache.java53 // touchedTile[i][j] is the sum of all the alphas in the tile with
55 private final int[][] touchedTile; field in class:PiscesCache
78 touchedTile = new int[nyTiles][nxTiles];
92 // is not going out of bounds in touchedTile[ty]
93 if (tx1 >= touchedTile[ty].length) {
94 tx1 = touchedTile[ty].length - 1;
99 touchedTile[ty][tx] += val * runLen;
101 touchedTile[ty][tx] += val * (nextTileXCoord - x0);
109 touchedTile[ty][tx] += (val << TILE_SIZE_LG);
122 touchedTile[t
[all...]

Completed in 21 milliseconds