OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mipMapSizes
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java
315
protected int[]
mipMapSizes
;
343
clone.
mipMapSizes
=
mipMapSizes
!= null ?
mipMapSizes
.clone() : null;
374
* @param
mipMapSizes
378
int[]
mipMapSizes
) {
382
if (
mipMapSizes
!= null &&
mipMapSizes
.length <= 1) {
383
mipMapSizes
= null;
391
this.
mipMapSizes
= mipMapSizes
[
all
...]
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
ImageToAwt.java
280
int[]
mipMapSizes
= new int[expectedMipmaps];
282
for (int i = 0; i <
mipMapSizes
.length; i++){
285
mipMapSizes
[i] = size;
289
image.setMipMapSizes(
mipMapSizes
);
Completed in 269 milliseconds