HomeSort by relevance Sort by last modified time
    Searched full:texturekey (Results 1 - 25 of 44) sorted by null

1 2

  /external/jmonkeyengine/engine/src/test/jme3test/texture/
TestTexture3DLoading.java 8 import com.jme3.asset.TextureKey;
34 TextureKey key = new TextureKey("Textures/3D/flame.dds");
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestEnvironmentMapping.java 4 import com.jme3.asset.TextureKey;
31 TextureKey key = new TextureKey("Textures/Sky/Bright/BrightSky.dds", true);
  /external/chromium_org/third_party/skia/include/gpu/
GrTBackendEffectFactory.h 38 EffectKey textureKey = GrGLProgramEffects::GenTextureKey(drawEffect, caps);
46 SkASSERT(!(kIllegalTextureKeyMask & textureKey));
52 SkASSERT(!(kIllegalAttribKeyMask & textureKey));
60 (textureKey << kEffectKeyBits) |
  /external/jmonkeyengine/engine/src/blender/com/jme3/asset/
GeneratedTextureKey.java 11 public class GeneratedTextureKey extends TextureKey {
  /external/skia/include/gpu/
GrTBackendEffectFactory.h 38 EffectKey textureKey = GrGLProgramEffects::GenTextureKey(drawEffect, caps);
46 SkASSERT(!(kIllegalTextureKeyMask & textureKey));
52 SkASSERT(!(kIllegalAttribKeyMask & textureKey));
60 (textureKey << kEffectKeyBits) |
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderImageJme.java 35 import com.jme3.asset.TextureKey;
50 TextureKey key = new TextureKey(filename, true);
  /external/jmonkeyengine/engine/src/test/jme3test/asset/
TestOnlineJar.java 36 import com.jme3.asset.TextureKey;
65 TextureKey key = new TextureKey("grass.jpg", false);
TestUrlLoading.java 36 import com.jme3.asset.TextureKey;
65 TextureKey key = new TextureKey("planet-2.jpg", false);
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestCylinder.java 36 import com.jme3.asset.TextureKey;
55 TextureKey key = new TextureKey("Interface/Logo/Monkey.jpg", true);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
TextureKey.java 43 public class TextureKey extends AssetKey<Texture> {
52 public TextureKey(String name, boolean flipY) {
57 public TextureKey(String name) {
62 public TextureKey() {
157 if (!(other instanceof TextureKey)) {
160 return super.equals(other) && isFlipY() == ((TextureKey) other).isFlipY();
DesktopAssetManager.java 324 public Texture loadTexture(TextureKey key){
341 TextureKey key = new TextureKey(name, true);
348 TextureKey key = new TextureKey(name, flipY);
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeTower.java 41 import com.jme3.asset.TextureKey;
209 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg");
215 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG");
221 TextureKey key3 = new TextureKey("Textures/Terrain/Pond/Pond.jpg");
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestBrickTower.java 41 import com.jme3.asset.TextureKey;
195 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg");
201 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG");
207 TextureKey key3 = new TextureKey("Textures/Terrain/Pond/Pond.jpg");
TestBrickWall.java 35 import com.jme3.asset.TextureKey;
168 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg");
174 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG");
180 TextureKey key3 = new TextureKey("Textures/Terrain/Pond/Pond.jpg");
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");
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloPhysics.java 36 import com.jme3.asset.TextureKey;
136 TextureKey key = new TextureKey("Textures/Terrain/BrickWall/BrickWall.jpg");
142 TextureKey key2 = new TextureKey("Textures/Terrain/Rock/Rock.PNG");
148 TextureKey key3 = new TextureKey("Textures/Terrain/Pond/Pond.jpg");
  /external/jmonkeyengine/engine/src/android/jme3test/android/
SimpleTexturedTest.java 12 import com.jme3.asset.TextureKey;
54 Texture texture = assetManager.loadTexture(new TextureKey("Interface/Logo/Monkey.jpg"));
55 Texture textureMonkey = assetManager.loadTexture(new TextureKey("Interface/Logo/Monkey.jpg"));
  /external/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidImageInfo.java 87 TextureKey texKey = (TextureKey) assetInfo.getKey();
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ImageBasedHeightMapGrid.java 9 import com.jme3.asset.TextureKey;
62 final Texture texture = assetManager.loadTexture(new TextureKey(name));
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
PFMLoader.java 37 import com.jme3.asset.TextureKey;
137 if (!(info.getKey() instanceof TextureKey))
138 throw new IllegalArgumentException("Texture assets must be loaded using a TextureKey");
143 return load(in, ((TextureKey)info.getKey()).isFlipY());
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();
  /external/jmonkeyengine/engine/src/core/com/jme3/ui/
Picture.java 36 import com.jme3.asset.TextureKey;
136 TextureKey key = new TextureKey(imgName, true);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
MaterialExtensionLoader.java 38 import com.jme3.asset.TextureKey;
76 TextureKey texKey = new TextureKey(texturePath, false);
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SkyFactory.java 4 import com.jme3.asset.TextureKey;
208 TextureKey key = new TextureKey(textureName, true);

Completed in 181 milliseconds

1 2