Home
last modified time | relevance | path

Searched refs:texKey (Results 1 – 6 of 6) sorted by relevance

/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
DMaterialExtensionLoader.java76 TextureKey texKey = new TextureKey(texturePath, false); in readExtendingMaterialStatement() local
77 texKey.setGenerateMips(true); in readExtendingMaterialStatement()
78 texKey.setAsCube(false); in readExtendingMaterialStatement()
82 tex = assetManager.loadTexture(texKey); in readExtendingMaterialStatement()
85 … logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey, key}); in readExtendingMaterialStatement()
/external/jmonkeyengine/engine/src/android/com/jme3/asset/
DAndroidImageInfo.java87 TextureKey texKey = (TextureKey) assetInfo.getKey(); in loadBitmap() local
88 if (texKey.isFlipY()) { in loadBitmap()
97 throw new IOException("Failed to flip image: " + texKey); in loadBitmap()
/external/jmonkeyengine/engine/src/core/com/jme3/material/
DMatParam.java260 TextureKey texKey = (TextureKey) texVal.getKey(); in getValueAsString() local
261 if (texKey == null){ in getValueAsString()
266 if (texKey.isFlipY()) { in getValueAsString()
273 return ret + texKey.getName(); in getValueAsString()
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
DMaterialLoader.java132 TextureKey texKey = new TextureKey(folderName + path, false); in readTextureImage() local
133 texKey.setGenerateMips(genMips); in readTextureImage()
134 texKey.setAsCube(cubic); in readTextureImage()
137 Texture loadedTexture = assetManager.loadTexture(texKey); in readTextureImage()
149 textures[texUnit].setName(texKey.getName()); in readTextureImage()
152 … logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey, matName}); in readTextureImage()
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
DMTLLoader.java180 TextureKey texKey = new TextureKey(folderName + name); in loadTexture() local
181 texKey.setGenerateMips(true); in loadTexture()
184 texture = assetManager.loadTexture(texKey); in loadTexture()
187 … logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey, key}); in loadTexture()
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
DJ3MLoader.java142 TextureKey texKey = new TextureKey(texturePath, flipY); in readValue() local
143 texKey.setAsCube(type == VarType.TextureCubeMap); in readValue()
144 texKey.setGenerateMips(true); in readValue()
148 tex = assetManager.loadTexture(texKey); in readValue()
150 … logger.log(Level.WARNING, "Cannot locate {0} for material {1}", new Object[]{texKey, key}); in readValue()