All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mgsx.gltf.loaders.shared.texture.PixmapBinaryLoaderHackEmu Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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