OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tileWidth
(Results
1 - 14
of
14
) sorted by null
/external/dng_sdk/source/
dng_tile_iterator.cpp
126
int32
tileWidth
= tile.r - hOffset;
129
fTileWidth =
tileWidth
;
131
fLeftPage = (fArea.l - hOffset ) /
tileWidth
;
132
fRightPage = (fArea.r - hOffset - 1) /
tileWidth
;
141
fTileLeft = fHorizontalPage *
tileWidth
+ hOffset;
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tiledmappacker/
TileSetLayout.java
45
int
tileWidth
= tileset.getProperties().get("
tilewidth
", Integer.class);
61
int stopWidth = image.getWidth() -
tileWidth
;
65
for (x = margin; x <= stopWidth; x +=
tileWidth
+ spacing) {
TiledMapPacker.java
311
int
tileWidth
= set.getProperties().get("
tilewidth
", Integer.class);
329
tile = new BufferedImage(
tileWidth
, tileHeight, BufferedImage.TYPE_4BYTE_ABGR);
332
g.drawImage(layout.image, 0, 0,
tileWidth
, tileHeight, (int)tileLocation.x, (int)tileLocation.y, (int)tileLocation.x
333
+
tileWidth
, (int)tileLocation.y + tileHeight, null);
336
System.out.println("Adding " +
tileWidth
+ "x" + tileHeight + " (" + (int)tileLocation.x + ", "
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMapTileLayer.java
27
private float
tileWidth
;
44
return
tileWidth
;
56
* @param
tileWidth
tile width in pixels
58
public TiledMapTileLayer (int width, int height, int
tileWidth
, int tileHeight) {
62
this.
tileWidth
=
tileWidth
;
AtlasTmxMapLoader.java
236
int
tileWidth
= root.getIntAttribute("
tilewidth
", 0);
246
mapProperties.put("
tilewidth
",
tileWidth
);
252
mapTileWidth =
tileWidth
;
254
mapWidthInPixels = mapWidth *
tileWidth
;
260
mapWidthInPixels +=
tileWidth
/ 2;
286
int
tilewidth
= element.getIntAttribute("
tilewidth
", 0);
local
304
tilewidth
= element.getIntAttribute("tilewidth", 0)
[
all
...]
BaseTmxMapLoader.java
77
int
tileWidth
= element.getParent().getIntAttribute("
tilewidth
", 0);
79
TiledMapTileLayer layer = new TiledMapTileLayer(width, height,
tileWidth
, tileHeight);
TmxMapLoader.java
161
int
tileWidth
= root.getIntAttribute("
tilewidth
", 0);
174
mapProperties.put("
tilewidth
",
tileWidth
);
186
mapTileWidth =
tileWidth
;
188
mapWidthInPixels = mapWidth *
tileWidth
;
194
mapWidthInPixels +=
tileWidth
/ 2;
300
* <li><em>
tilewidth
</em>, (int, defaults to 0) the tile width</li>
317
int
tilewidth
= element.getIntAttribute("
tilewidth
", 0)
local
[
all
...]
/hardware/libhardware/modules/gralloc/
gralloc.cpp
229
const size_t
tileWidth
= 2;
232
size_t stride = align(width,
tileWidth
);
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
IsometricTiledMapRenderer.java
89
float
tileWidth
= layer.getTileWidth() * unitScale;
91
float halfTileWidth =
tileWidth
* 0.5f;
105
int row1 = (int)(translateScreenToIso(topLeft).y /
tileWidth
) - 2;
106
int row2 = (int)(translateScreenToIso(bottomRight).y /
tileWidth
) + 2;
108
int col1 = (int)(translateScreenToIso(bottomLeft).x /
tileWidth
) - 2;
109
int col2 = (int)(translateScreenToIso(topRight).x /
tileWidth
) + 2;
/external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c
88
unsigned
tileWidth
, tileHeight;
90
get_tile_size(format, &
tileWidth
, &tileHeight);
109
unsigned
tileWidth
, tileHeight;
110
get_tile_size(format, &
tileWidth
, &tileHeight);
111
row_align =
tileWidth
* _mesa_get_format_bytes(format) - 1;
/external/replicaisland/src/com/replica/replicaisland/
HotSpotSystem.java
146
final float
tileWidth
= level.getLevelWidth() / mWorld.getWidth();
147
worldX = (tileX *
tileWidth
) + (
tileWidth
/ 2.0f);
TiledVertexGrid.java
40
public TiledVertexGrid(Texture texture, int width, int height, int
tileWidth
, int tileHeight) {
42
mTileWidth =
tileWidth
;
60
final int
tileWidth
= mTileWidth;
62
final int tilesAcross = width /
tileWidth
;
67
final int textureTilesAcross = texture.width /
tileWidth
;
89
final float offsetX = tileX *
tileWidth
;
96
int textureOffsetX = (tileIndex % textureTilesAcross) *
tileWidth
;
99
textureOffsetX > texture.width -
tileWidth
||
107
final float u2 = ((textureOffsetX +
tileWidth
- GL_MAGIC_OFFSET) * texelWidth);
111
final float[] p1 = { offsetX +
tileWidth
, offsetY, 0.0f }
[
all
...]
/external/mesa3d/src/mesa/drivers/common/
meta.c
[
all
...]
/prebuilts/tools/common/m2/repository/tightvnc/
tightvnc.jar
Completed in 2096 milliseconds