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

/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/pisces/
H A DPiscesCache.java51 // touchedTile[i][j] is the sum of all the alphas in the tile with
53 private final int[][] touchedTile; field in class:PiscesCache
76 touchedTile = new int[nyTiles][nxTiles];
90 // is not going out of bounds in touchedTile[ty]
91 if (tx1 >= touchedTile[ty].length) {
92 tx1 = touchedTile[ty].length - 1;
97 touchedTile[ty][tx] += val * runLen;
99 touchedTile[ty][tx] += val * (nextTileXCoord - x0);
107 touchedTile[ty][tx] += (val << TILE_SIZE_LG);
120 touchedTile[t
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DMarlinCache.java96 // touchedTile[i] is the sum of all the alphas in the tile with
98 int[] touchedTile; field in class:MarlinCache
103 // touchedTile ref (clean)
116 touchedTile = touchedTile_ref.initial;
187 touchedTile = touchedTile_ref.getArray(nxTiles);
196 // Reset touchedTile if needed:
204 touchedTile = touchedTile_ref.putArray(touchedTile, 0, 0); // already zero filled
227 // Reset touchedTile:
232 // clean only dirty touchedTile
[all...]

Completed in 38 milliseconds