OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:texturefile
(Results
1 - 5
of
5
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
TextureAtlasLoader.java
44
Texture texture = assetManager.get(page.
textureFile
.path().replaceAll("\\\\", "/"), Texture.class);
68
dependencies.add(new AssetDescriptor(page.
textureFile
, Texture.class, params));
/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);
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TextureUnpacker.java
85
img = ImageIO.read(page.
textureFile
.file());
Completed in 697 milliseconds