OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textureFile
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TideMapLoader.java
66
for (FileHandle
textureFile
: loadTileSheets(root, tideFile)) {
67
textures.put(
textureFile
.path(), new Texture(
textureFile
));
TmxMapLoader.java
83
for (FileHandle
textureFile
: textureFiles) {
84
Texture texture = new Texture(
textureFile
, parameters.generateMipMaps);
86
textures.put(
textureFile
.path(), texture);
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
TextureAtlas.java
57
public final FileHandle
textureFile
;
71
this.
textureFile
= handle;
244
texture = new Texture(page.
textureFile
, page.format, page.useMipMaps);
Completed in 2888 milliseconds