HomeSort by relevance Sort by last modified time
    Searched refs:TextureKey (Results 26 - 41 of 41) sorted by null

12

  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
PhysicsTestHelper.java 9 import com.jme3.asset.TextureKey;
184 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG");
TestRagdollCharacter.java 39 import com.jme3.asset.TextureKey;
145 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg");
TestAttachDriver.java 36 import com.jme3.asset.TextureKey;
109 TextureKey key = new TextureKey("Interface/Logo/Monkey.jpg", true);
TestBoneRagdoll.java 36 import com.jme3.asset.TextureKey;
239 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG");
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
HDRLoader.java 37 import com.jme3.asset.TextureKey;
316 if (!(info.getKey() instanceof TextureKey))
317 throw new IllegalArgumentException("Texture assets must be loaded using a TextureKey");
319 boolean flip = ((TextureKey) info.getKey()).isFlipY();
DDSLoader.java 36 import com.jme3.asset.TextureKey;
120 if (!(info.getKey() instanceof TextureKey)) {
121 throw new IllegalArgumentException("Texture assets must be loaded using a TextureKey");
130 ((TextureKey) info.getKey()).setTextureTypeHint(Type.ThreeDimensional);
132 ((TextureKey) info.getKey()).setTextureTypeHint(Type.CubeMap);
134 ArrayList<ByteBuffer> data = readData(((TextureKey) info.getKey()).isFlipY());
TGALoader.java 37 import com.jme3.asset.TextureKey;
82 if (!(info.getKey() instanceof TextureKey))
83 throw new IllegalArgumentException("Texture assets must be loaded using a TextureKey");
85 boolean flip = ((TextureKey)info.getKey()).isFlipY();
  /external/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidAssetManager.java 112 public Texture loadTexture(TextureKey key) {
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/font/plugins/
BitmapFontLoader.java 103 TextureKey key = new TextureKey(folder + file, true);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
MTLLoader.java 180 TextureKey texKey = new TextureKey(folderName + name);
  /external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/
AWTLoader.java 38 import com.jme3.asset.TextureKey;
197 boolean flip = ((TextureKey) info.getKey()).isFlipY();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureHelper.java 52 import com.jme3.asset.TextureKey;
465 TextureKey key = new TextureKey(assetName);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MaterialLoader.java 132 TextureKey texKey = new TextureKey(folderName + path, false);
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainTest.java 52 import com.jme3.asset.TextureKey;
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
J3MLoader.java 142 TextureKey texKey = new TextureKey(texturePath, flipY);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
Cinematic.java 38 import com.jme3.asset.TextureKey;

Completed in 743 milliseconds

12