Home
last modified time | relevance | path

Searched refs:TextureKey (Results 1 – 25 of 42) sorted by relevance

12

/external/jmonkeyengine/engine/src/core/com/jme3/asset/
DTextureKey.java43 public class TextureKey extends AssetKey<Texture> { class
52 public TextureKey(String name, boolean flipY) { in TextureKey() method in TextureKey
57 public TextureKey(String name) { in TextureKey() method in TextureKey
62 public TextureKey() { in TextureKey() method in TextureKey
157 if (!(other instanceof TextureKey)) { in equals()
160 return super.equals(other) && isFlipY() == ((TextureKey) other).isFlipY(); in equals()
DDesktopAssetManager.java324 public Texture loadTexture(TextureKey key){ in loadTexture()
341 TextureKey key = new TextureKey(name, true); in loadTexture()
348 TextureKey key = new TextureKey(name, flipY); in loadTexture()
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
DHelloPhysics.java36 import com.jme3.asset.TextureKey;
136 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg"); in initMaterials()
142 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG"); in initMaterials()
148 TextureKey key3 = new TextureKey("Textures/Terrain/Pond/Pond.jpg"); in initMaterials()
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DTestBrickWall.java35 import com.jme3.asset.TextureKey;
168 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg"); in initMaterial()
174 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG"); in initMaterial()
180 TextureKey key3 = new TextureKey("Textures/Terrain/Pond/Pond.jpg"); in initMaterial()
DTestBrickTower.java41 import com.jme3.asset.TextureKey;
195 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg"); in initMaterial()
201 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG"); in initMaterial()
207 TextureKey key3 = new TextureKey("Textures/Terrain/Pond/Pond.jpg"); in initMaterial()
DTestRagdollCharacter.java39 import com.jme3.asset.TextureKey;
145 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg"); in initWall()
DPhysicsTestHelper.java9 import com.jme3.asset.TextureKey;
184 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG"); in createBallShooter()
/external/jmonkeyengine/engine/src/test/jme3test/model/shape/
DTestCylinder.java36 import com.jme3.asset.TextureKey;
55 TextureKey key = new TextureKey("Interface/Logo/Monkey.jpg", true); in simpleInitApp()
/external/jmonkeyengine/engine/src/test/jme3test/batching/
DTestBatchNodeTower.java41 import com.jme3.asset.TextureKey;
209 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg"); in initMaterial()
215 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG"); in initMaterial()
221 TextureKey key3 = new TextureKey("Textures/Terrain/Pond/Pond.jpg"); in initMaterial()
/external/jmonkeyengine/engine/src/test/jme3test/asset/
DTestOnlineJar.java36 import com.jme3.asset.TextureKey;
65 TextureKey key = new TextureKey("grass.jpg", false); in simpleInitApp()
DTestUrlLoading.java36 import com.jme3.asset.TextureKey;
65 TextureKey key = new TextureKey("planet-2.jpg", false); in simpleInitApp()
/external/jmonkeyengine/engine/src/test/jme3test/texture/
DTestTexture3DLoading.java8 import com.jme3.asset.TextureKey;
34 TextureKey key = new TextureKey("Textures/3D/flame.dds"); in simpleInitApp()
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
DRenderImageJme.java35 import com.jme3.asset.TextureKey;
50 TextureKey key = new TextureKey(filename, true); in RenderImageJme()
/external/jmonkeyengine/engine/src/test/jme3test/light/
DTestEnvironmentMapping.java4 import com.jme3.asset.TextureKey;
31 TextureKey key = new TextureKey("Textures/Sky/Bright/BrightSky.dds", true); in simpleInitApp()
/external/jmonkeyengine/engine/src/core/com/jme3/ui/
DPicture.java36 import com.jme3.asset.TextureKey;
136 TextureKey key = new TextureKey(imgName, true); in setImage()
/external/jmonkeyengine/engine/src/android/jme3test/android/
DSimpleTexturedTest.java12 import com.jme3.asset.TextureKey;
54 Texture texture = assetManager.loadTexture(new TextureKey("Interface/Logo/Monkey.jpg")); in simpleInitApp()
55 Texture textureMonkey = assetManager.loadTexture(new TextureKey("Interface/Logo/Monkey.jpg")); in simpleInitApp()
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DPFMLoader.java37 import com.jme3.asset.TextureKey;
137 if (!(info.getKey() instanceof TextureKey)) in load()
143 return load(in, ((TextureKey)info.getKey()).isFlipY()); in load()
DHDRLoader.java37 import com.jme3.asset.TextureKey;
316 if (!(info.getKey() instanceof TextureKey)) in load()
319 boolean flip = ((TextureKey) info.getKey()).isFlipY(); in load()
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
DTexture.java38 import com.jme3.asset.TextureKey;
297 private TextureKey key = null;
402 this.key = (TextureKey) key; in setKey()
584 key = (TextureKey) capsule.readSavable("key", null); in read()
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
DMaterialExtensionLoader.java38 import com.jme3.asset.TextureKey;
76 TextureKey texKey = new TextureKey(texturePath, false); in readExtendingMaterialStatement()
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
DImageBasedHeightMapGrid.java9 import com.jme3.asset.TextureKey;
62 final Texture texture = assetManager.loadTexture(new TextureKey(name)); in getHeightMapAt()
/external/jmonkeyengine/engine/src/android/com/jme3/asset/
DAndroidImageInfo.java87 TextureKey texKey = (TextureKey) assetInfo.getKey(); in loadBitmap()
/external/jmonkeyengine/engine/src/core/com/jme3/material/
DMatParam.java34 import com.jme3.asset.TextureKey;
260 TextureKey texKey = (TextureKey) texVal.getKey(); in getValueAsString()
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
DImageTileLoader.java9 import com.jme3.asset.TextureKey;
90 final Texture texture = assetManager.loadTexture(new TextureKey(name)); in getHeightMapAt()
/external/jmonkeyengine/engine/src/core/com/jme3/util/
DSkyFactory.java4 import com.jme3.asset.TextureKey;
208 TextureKey key = new TextureKey(textureName, true); in createSky()

12