com.jme3.texture.plugins.ETCFlipper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jme3-core Show documentation
Show all versions of jme3-core Show documentation
jMonkeyEngine is a 3-D game engine for adventurous Java developers
The newest version!
package com.jme3.texture.plugins;
import java.nio.ByteBuffer;
import java.util.logging.Logger;
import com.jme3.texture.Image.Format;
/**
* A place-holder for future implementation of ETC texture flipping.
*
*/
public class ETCFlipper {
private static final Logger logger = Logger.getLogger(ETCFlipper.class.getName());
public static ByteBuffer flipETC(ByteBuffer img, int w, int h, Format format) {
logger.warning("ETC texture flipping is not supported yet");
return img;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy