OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:texturepath
(Results
1 - 4
of
4
) sorted by null
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
J3MLoader.java
126
// String
texturePath
= readString("[\n;(//)(\\})]");
127
String
texturePath
= value.trim();
130
if (
texturePath
.startsWith("Flip Repeat ")){
131
texturePath
=
texturePath
.substring(12).trim();
134
}else if (
texturePath
.startsWith("Flip ")){
135
texturePath
=
texturePath
.substring(5).trim();
137
}else if (
texturePath
.startsWith("Repeat ")){
138
texturePath
= texturePath.substring(7).trim()
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
TextureImageDetailsProvider.java
80
String
texturePath
= ((GLStringProperty) imageProperty).getStringValue();
81
if (
texturePath
!= null) {
82
mImageCanvas.setImage(new Image(Display.getDefault(),
texturePath
));
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
MaterialExtensionLoader.java
72
String
texturePath
= split[2];
76
TextureKey texKey = new TextureKey(
texturePath
, false);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureHelper.java
393
String
texturePath
= image.getFieldValue("name").toString();
396
LOGGER.log(Level.INFO, "Reading texture from file: {0}",
texturePath
);
397
result = this.loadTextureFromFile(
texturePath
, blenderContext);
413
result.setName(
texturePath
);
416
LOGGER.log(Level.FINE, "Adding texture {0} to the loaded features with OMA = {1}", new Object[] {
texturePath
, image.getOldMemoryAddress()});
Completed in 1044 milliseconds