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

/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
H A DTextureAtlas.java379 if (region.packedWidth == region.originalWidth && region.packedHeight == region.originalHeight) {
479 public int packedHeight; field in class:TextureAtlas.AtlasRegion
501 packedHeight = height;
511 packedHeight = region.packedHeight;
526 /** Returns the packed width considering the rotate value, if it is true then it returns the packedHeight, otherwise it
529 return rotate ? packedHeight : packedWidth;
533 * returns the packedHeight. */
535 return rotate ? packedWidth : packedHeight;
593 int packedWidth = region.rotate ? region.packedHeight
[all...]

Completed in 121 milliseconds