OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getFileHandle
(Results
1 - 20
of
20
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/
Files.java
55
public FileHandle
getFileHandle
(String path, FileType type);
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
PixmapBlendingTest.java
48
pixS1 = new Pixmap(Gdx.files.
getFileHandle
("data/test4.png", Files.FileType.Internal));
49
pixS2 = new Pixmap(Gdx.files.
getFileHandle
("data/test3.png", Files.FileType.Internal));
BitmapFontAlignmentTest.java
58
font = new BitmapFont(Gdx.files.
getFileHandle
("data/verdana39.fnt", FileType.Internal), Gdx.files.
getFileHandle
(
SoundTest.java
45
sound = Gdx.audio.newSound(Gdx.files.
getFileHandle
("data/shotgun.ogg", FileType.Internal));
/external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/
HeadlessFiles.java
31
public FileHandle
getFileHandle
(String fileName, FileType type) {
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwFiles.java
30
public FileHandle
getFileHandle
(String fileName, FileType type) {
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglFiles.java
31
public FileHandle
getFileHandle
(String fileName, FileType type) {
LwjglGraphics.java
196
Pixmap pixmap = new Pixmap(Gdx.files.
getFileHandle
(config.iconPaths.get(i), config.iconFileTypes.get(i)));
/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3Files.java
31
public FileHandle
getFileHandle
(String fileName, FileType type) {
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSFiles.java
37
public FileHandle
getFileHandle
(String fileName, FileType type) {
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSFiles.java
38
public FileHandle
getFileHandle
(String fileName, FileType type) {
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtFiles.java
36
public FileHandle
getFileHandle
(String path, FileType type) {
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidFiles.java
49
public FileHandle
getFileHandle
(String path, FileType type) {
AndroidFileHandle.java
58
return Gdx.files.
getFileHandle
(new File(file.getParent(), name).getPath(), type); //this way we can find the sibling even if it's inside the obb
AndroidZipFileHandle.java
87
return Gdx.files.
getFileHandle
(new File(file.getParent(), name).getPath(), type); //this way we can find the sibling even if it's not inside the obb
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
FileTextureData.java
123
public FileHandle
getFileHandle
() {
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
FileTextureData.java
127
public FileHandle
getFileHandle
() {
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
TexturePanel.java
64
setImage(data.
getFileHandle
().file().getAbsolutePath());
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
ParticleEditor.java
328
font = new BitmapFont(Gdx.files.
getFileHandle
("default.fnt", FileType.Internal), Gdx.files.
getFileHandle
("default.png",
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
BitmapFont.java
163
file = Gdx.files.
getFileHandle
(data.imagePaths[i], data.fontFile.type());
[
all
...]
Completed in 553 milliseconds