OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextureKey
(Results
1 - 25
of
41
) sorted by null
1
2
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
GeneratedTextureKey.java
11
public class GeneratedTextureKey extends
TextureKey
{
/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);
AssetManager.java
182
* @param key The {@link
TextureKey
} to use for loading.
187
public Texture loadTexture(
TextureKey
key);
/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);
TestManyLocators.java
67
AssetInfo d = am.locateAsset(new
TextureKey
("planet-2.jpg"));
/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/core/com/jme3/ui/
Picture.java
36
import com.jme3.asset.
TextureKey
;
136
TextureKey
key = new
TextureKey
(imgName, true);
/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/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/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");
/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/com/jme3/asset/
AndroidImageInfo.java
87
TextureKey
texKey = (
TextureKey
) assetInfo.getKey();
/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/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/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());
/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/terrain/com/jme3/terrain/geomipmap/grid/
ImageTileLoader.java
9
import com.jme3.asset.
TextureKey
;
90
final Texture texture = assetManager.loadTexture(new
TextureKey
(name));
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
Texture.java
38
import com.jme3.asset.
TextureKey
;
297
private
TextureKey
key = null;
402
this.key = (
TextureKey
) key;
584
key = (
TextureKey
) capsule.readSavable("key", null);
/external/jmonkeyengine/engine/src/core/com/jme3/material/
MatParam.java
34
import com.jme3.asset.
TextureKey
;
260
TextureKey
texKey = (
TextureKey
) texVal.getKey();
/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 1288 milliseconds
1
2