Home | History | Annotate | Download | only in jingle

Lines Matching full:tiles

896 - * It uses PNG Tiles into UDP packets.

914 - private int tiles[][][];
928 - tiles = new int[maxI][maxJ][tileWidth * tileWidth];
980 - if (keyframe == KEYFRAME || !Arrays.equals(tiles[i][j], pixels)) {
1009 - tiles[i][j] = pixels;
1056 - * Get the encoder used to encode Images Tiles
1065 - * Set the encoder used to encode Image Tiles
1616 - * It uses PNG Tiles into UDP packets.
1624 - private BufferedImage tiles[][];
1633 - tiles = new BufferedImage[width][height];
1727 - tiles[x][y] = bufferedImage;
1733 - for (int i = 0; i < tiles.length; i++) {
1734 - for (int j = 0; j < tiles[0].length; j++) {
1735 - g.drawImage(tiles[i][j], tileWidth * i, tileWidth * j, this);