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

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAATileGenerator.java43 * byte tile[] = new byte[tw * th];
50 * // can skip this tile...
53 * // can treat this tile like a fillRect
57 * aatg.getAlpha(tile, 0, tw);
58 * handleAlpha(tile, x, y, w, h);
70 * @return the width of the standard alpha tile
76 * @return the height of the standard alpha tile
82 * tile.
83 * The answer may be 0x00 to indicate that the current tile has
85 * that the current tile i
104 getAlpha(byte tile[], int offset, int rowstride) argument
[all...]
H A DSpanClipRenderer.java59 byte tile[]; field in class:SpanClipRenderer.SCRcontext
99 atile = context.tile;
105 context.tile = atile;
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DIdleTileCache.java65 * Release tile and allow it to be re-used by another thread. Allowed
68 public void releaseTile(JulesTile tile) { argument
69 if (tile != null && tile.hasBuffer()) {
70 idleTileConsumerCacheList.add(tile);
H A DJulesAATileGenerator.java170 JulesTile tile = null;
173 tile = worker.getPreRasterizedTile(currTilePos);
176 if (tile != null) {
177 System.arraycopy(tile.getImgBuffer(), 0,
179 tileCache.releaseTile(tile);
215 * list of trapezoids. This makes it quite simple to check wether a tile is
216 * fully covered by traps by: - Checking wether the tile is fully covered by
218 * traps cover the tile horizontally This also works, when a single tile
219 * coveres the whole tile
280 rasterizeTile(int tileIndex, JulesTile tile) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesTileGenerator.java88 * @return the width of the standard alpha tile
96 * @return the height of the standard alpha tile
104 * tile.
105 * The answer may be 0x00 to indicate that the current tile has
107 * that the current tile is completely covered by the path, or any
110 * value for partial coverage of the tile
114 // Note: if we have a filled rectangle that doesn't end on a tile
120 // and 2 multiplications per tile, instead of just 2 multiplications
126 // of the current tile. This would eliminate the 2 Math.min calls that
134 * Skips the current tile an
150 getAlpha(byte tile[], int offset, int rowstride) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DMaskTileManager.java119 // We don't need tiling if all geometry fits in a single tile
131 MaskTile tile = tileList.get(i * xTiles + m);
135 compositeSingleTile(dst, tile, dirtyArea, maskRequired,
181 protected void compositeSingleTile(XRSurfaceData dst, MaskTile tile, argument
186 if (tile.rects.getSize() > 0) {
187 DirtyRegion tileDirtyArea = tile.getDirtyArea();
196 int rectCnt = tile.rects.getSize();
202 * Optimization: When the tile only contains one rectangle, the
207 maskColor, tile.rects);
227 tile
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DJConsole.java481 void addVmid(final LocalVirtualMachine lvm, final boolean tile) { argument
485 addProxyClient(ProxyClient.getProxyClient(lvm), tile);
499 final boolean tile) {
504 tile);
520 final boolean tile) {
526 tile);
542 void addProxyClient(final ProxyClient proxyClient, final boolean tile) { argument
548 if (tile) {
496 addUrl(final String url, final String userName, final String password, final boolean tile) argument
518 addHost(final String hostName, final int port, final String userName, final String password, final boolean tile) argument

Completed in 48 milliseconds