Selaa lähdekoodia

- add jme3 Texture compatible TextureAtlas class

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9023 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
nor..67 13 vuotta sitten
vanhempi
commit
849a2e4541

+ 2 - 2
jme3-core/src/com/jme3/gde/core/texture/TextureAtlas.java → jme3-core/src/com/jme3/gde/core/texture/BufferedImageTextureAtlas.java

@@ -47,14 +47,14 @@ import org.openide.util.Exceptions;
  *
  * @author Lukasz Bruun - lukasz.dk, normenhansen
  */
-public class TextureAtlas {
+public class BufferedImageTextureAtlas {
 
     private BufferedImage image;
     private Graphics2D graphics;
     private Node root;
     private Map<String, Rectangle> rectangleMap;
 
-    public TextureAtlas(int width, int height) {
+    public BufferedImageTextureAtlas(int width, int height) {
         image = new BufferedImage(width, height, BufferedImage.TYPE_4BYTE_ABGR);
         graphics = image.createGraphics();