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

12

  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SkyFactory.java 4 import com.jme3.asset.TextureKey;
208 TextureKey key = new TextureKey(textureName, true);
  /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/skia/include/gpu/
GrContext.h 111 * textures with the same TextureKey but different bounds will not collide.
113 typedef uint64_t TextureKey;
133 TextureCacheEntry createAndLockTexture(TextureKey key,
158 TextureCacheEntry findAndLockTexture(TextureKey key,
167 bool isTextureInCache(TextureKey key,
    [all...]
  /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/skia/src/gpu/
SkGr.cpp 60 GrContext::TextureKey key,
GrContext.cpp 163 GrContext::TextureKey clientKey,
169 GR_STATIC_ASSERT(sizeof(GrContext::TextureKey) == sizeof(uint64_t));
224 TextureKey key,
235 bool GrContext::isTextureInCache(TextureKey key,
301 TextureKey key,
420 GrContext::TextureKey descKey = (desc.fFlags << 8) |
    [all...]
SkGpuDevice.cpp     [all...]
  /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 349 milliseconds

12