Example usage for com.badlogic.gdx.utils Disposable interface-usage

List of usage examples for com.badlogic.gdx.utils Disposable interface-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx.utils Disposable interface-usage.

Usage

From source file br.com.animvs.koalory.entities.engine.graphics.tiles.TileRenderer.java

/**
 * Renders ortho tiles by caching geometry on the GPU. How much is cached is controlled by {@link #setOverCache(float)}. When the
 * view reaches the edge of the cached tiles, the cache is rebuilt at the new view position.
 * <p/>
 * This class may have poor performance when tiles are often changed dynamically, since the cache must be rebuilt after each
 * change.

From source file ca.hiphiparray.amazingmaze.Assets.java

/**
 * Class to easily manage assets, furthering the capabilities of an {@link AssetManager};
 *
 * @since 0.1
 * @author Vincent Macri
 * @author Chloe Nguyen

From source file CB_Locator.Map.TileGL.java

/**
 * @author ging-buh
 * @author Longri
 */
public abstract class TileGL implements Disposable {
    public enum TileState {

From source file CB_UI_Base.graphics.extendedIntrefaces.ext_Matrix.java

/**
 * @author Longri
 */
public interface ext_Matrix extends Disposable {

    /** Set the matrix to identity */

From source file CB_UI_Base.graphics.Geometry.IGeometry.java

/**
 * @author Longri
 */
public interface IGeometry extends Disposable {
    final static float MIN_CIRCLE_SEGMENTH_LENGTH = 10;
    final static int MIN_CIRCLE_SEGMENTH_COUNT = 18;

From source file CB_UI_Base.graphics.Geometry.PathLine.java

/**
 * A Path holds in a Array of Lines
 * 
 * @author Longri
 */
public class PathLine extends CB_List<Line> implements Disposable {

From source file CB_UI_Base.graphics.Geometry.QuadranglePath.java

/**
 * @author Longri
 */
public class QuadranglePath extends CB_List<Quadrangle> implements Disposable {
    private static final long serialVersionUID = 2368800461989756291L;
    protected AtomicBoolean isDisposed = new AtomicBoolean(false);

From source file CB_UI_Base.graphics.GL_Path.java

/**
 * @author Longri
 */
public class GL_Path implements ext_Path, Disposable {
    final static float MIN_SEGMENTH_LENGTH = 10;

From source file CB_UI_Base.graphics.Images.BitmapDrawable.java

/**
 * @author Longri
 */
public class BitmapDrawable implements ext_Bitmap, Disposable {
    static CB_List<String> HashStringList = new CB_List<String>();
    // static HashMap<String, Texture> TextureList = new HashMap<String, Texture>();

From source file CB_UI_Base.graphics.Images.IRotateDrawable.java

/**
 * @author Longri
 */
public interface IRotateDrawable extends Disposable {
    public boolean draw(Batch batch, float x, float y, final float width, final float height, float rotated);
}