net.mgsx.gltf.loaders.shared.texture.PixmapBinaryLoaderHackEmu Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backend-teavm Show documentation
Show all versions of backend-teavm Show documentation
Tool to generate libgdx to javascript using teaVM
package net.mgsx.gltf.loaders.shared.texture;
import com.badlogic.gdx.graphics.Pixmap;
import com.github.xpenatan.gdx.backends.teavm.gen.Emulate;
@Emulate(valueStr = "net.mgsx.gltf.loaders.shared.texture.PixmapBinaryLoaderHack")
public class PixmapBinaryLoaderHackEmu {
public static Pixmap load(byte [] encodedData, int offset, int len){
return new Pixmap(encodedData, offset, len);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy