Home
last modified time | relevance | path

Searched refs:mipMapSizes (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/texture/
DImage.java315 protected int[] mipMapSizes; field in Image
343 clone.mipMapSizes = mipMapSizes != null ? mipMapSizes.clone() : null; in clone()
378 int[] mipMapSizes) { in Image() argument
382 if (mipMapSizes != null && mipMapSizes.length <= 1) { in Image()
383 mipMapSizes = null; in Image()
391 this.mipMapSizes = mipMapSizes; in Image()
410 int[] mipMapSizes) { in Image() argument
414 if (mipMapSizes != null && mipMapSizes.length <= 1) { in Image()
415 mipMapSizes = null; in Image()
425 this.mipMapSizes = mipMapSizes; in Image()
[all …]
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
DImageToAwt.java280 int[] mipMapSizes = new int[expectedMipmaps]; in createData() local
282 for (int i = 0; i < mipMapSizes.length; i++){ in createData()
285 mipMapSizes[i] = size; in createData()
289 image.setMipMapSizes(mipMapSizes); in createData()