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

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesCache.java39 // rowAARLE[i] holds the encoding of the pixel row with y = bboxY0+i.
40 // The format of each of the inner arrays is: rowAARLE[i][0,1] = (x0, n)
42 // number of RLE entries in this row. rowAARLE[i][j,j+1] for j>1 is
44 final int[][] rowAARLE; field in class:PiscesCache
71 rowAARLE = new int[bboxY1 - bboxY0 + 1][INIT_ROW_SIZE];
136 assert rowAARLE[y0][1] == 0;
144 rowAARLE[y0][0] = x;
145 rowAARLE[y0][1] = 2;
155 return rowAARLE[rowidx][0];
159 return rowAARLE[rowid
[all...]

Completed in 29 milliseconds