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

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAlphaPaintPipe.java96 private static final int TILE_SIZE = 32; field in class:AlphaPaintPipe
117 for (int rely = 0; rely < h; rely += TILE_SIZE) {
119 int th = Math.min(h-rely, TILE_SIZE);
120 for (int relx = 0; relx < w; relx += TILE_SIZE) {
122 int tw = Math.min(w-relx, TILE_SIZE);
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesCache.java54 // y=i*TILE_SIZE+bboxY0 and x=j*TILE_SIZE+bboxX0.
58 static final int TILE_SIZE = 1 << TILE_SIZE_LG; // 32 field in class:PiscesCache
74 // the ceiling of (maxy - miny + 1) / TILE_SIZE;
75 int nyTiles = (maxy - miny + TILE_SIZE) >> TILE_SIZE_LG;
76 int nxTiles = (maxx - minx + TILE_SIZE) >> TILE_SIZE_LG;
H A DPiscesTileGenerator.java34 public static final int TILE_SIZE = PiscesCache.TILE_SIZE; field in class:PiscesTileGenerator
59 this.maxTileAlphaSum = TILE_SIZE*TILE_SIZE*maxalpha;
91 return TILE_SIZE;
99 return TILE_SIZE;
117 // starting at x,y that has width = Math.min(TILE_SIZE, bboxX1-x),
118 // and height min(TILE_SIZE,bboxY1-y), which is what should happen.
139 if ((x += TILE_SIZE) >= cache.bboxX1) {
141 y += TILE_SIZE;
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesAATileGenerator.java50 final static int TILE_SIZE = 32; field in class:JulesAATileGenerator
119 tilesX = (int) Math.ceil(((double) width) / TILE_SIZE);
120 tilesY = (int) Math.ceil(((double) height) / TILE_SIZE);
225 if (trapList.getSize() > TILE_SIZE) {
281 int tileOffsetX = left + getXPos(tileIndex) * TILE_SIZE;
282 int tileOffsetY = top + getYPos(tileIndex) * TILE_SIZE;
314 return TILE_SIZE;
318 return TILE_SIZE;

Completed in 45 milliseconds