![JAR search and dependency download from the Maven repository](/logo.png)
com.crashinvaders.basisu.wrapper.BasisuTextureFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of basisu-wrapper Show documentation
Show all versions of basisu-wrapper Show documentation
Java wrapper for Basis Universal texture transcoder native code.
The newest version!
package com.crashinvaders.basisu.wrapper;
/** Direct mapping of basist::basis_tex_format
enum constants. */
public enum BasisuTextureFormat implements UniqueIdUtils.UniqueIdValue {
ETC1S(0),
UASTC4x4(1),
;
private final int id;
BasisuTextureFormat(int id) {
this.id = id;
}
@Override
public int getId() {
return id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy