HomeSort by relevance Sort by last modified time
    Searched refs:texKey (Results 1 - 6 of 6) sorted by null

  /external/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidImageInfo.java 87 TextureKey texKey = (TextureKey) assetInfo.getKey();
88 if (texKey.isFlipY()) {
97 throw new IOException("Failed to flip image: " + texKey);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
MaterialExtensionLoader.java 76 TextureKey texKey = new TextureKey(texturePath, false);
77 texKey.setGenerateMips(true);
78 texKey.setAsCube(false);
82 tex = assetManager.loadTexture(texKey);
85 logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey, key});
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
MatParam.java 260 TextureKey texKey = (TextureKey) texVal.getKey();
261 if (texKey == null){
266 if (texKey.isFlipY()) {
273 return ret + texKey.getName();
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
MTLLoader.java 180 TextureKey texKey = new TextureKey(folderName + name);
181 texKey.setGenerateMips(true);
184 texture = assetManager.loadTexture(texKey);
187 logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey, key});
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MaterialLoader.java 132 TextureKey texKey = new TextureKey(folderName + path, false);
133 texKey.setGenerateMips(genMips);
134 texKey.setAsCube(cubic);
137 Texture loadedTexture = assetManager.loadTexture(texKey);
149 textures[texUnit].setName(texKey.getName());
152 logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey, matName});
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
J3MLoader.java 142 TextureKey texKey = new TextureKey(texturePath, flipY);
143 texKey.setAsCube(type == VarType.TextureCubeMap);
144 texKey.setGenerateMips(true);
148 tex = assetManager.loadTexture(texKey);
150 logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey, key});

Completed in 703 milliseconds