Home
last modified time | relevance | path

Searched refs:potWidth (Results 1 – 3 of 3) sorted by relevance

/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
DFileTextureData.java72 int potWidth = MathUtils.nextPowerOfTwo(pixmapWidth); in ensurePot() local
74 if (pixmapWidth != potWidth || pixmapHeight != potHeight) { in ensurePot()
75 Pixmap tmp = new Pixmap(potWidth, potHeight, pixmap.getFormat()); in ensurePot()
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
DFileTextureData.java76 int potWidth = MathUtils.nextPowerOfTwo(pixmapWidth); in ensurePot() local
78 if (pixmapWidth != potWidth || pixmapHeight != potHeight) { in ensurePot()
79 Pixmap tmp = new Pixmap(potWidth, potHeight, pixmap.getFormat()); in ensurePot()
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
DMipMapGenerator.java64 int potWidth = FastMath.nearestPowerOfTwo(image.getWidth()); in resizeToPowerOf2() local
66 int potSize = Math.max(potWidth, potHeight); in resizeToPowerOf2()