Package com.tinyline.tiny2d

Examples of com.tinyline.tiny2d.TinyBuffer


    private final int daHeight(final Tile tile) {
        return (tile.height - 2) << Tiny2D.FIX_BITS;
    }

    private Tiny2D getT2D(final Tile tile) {
        TinyBuffer pixbuf = new TinyBuffer();
        pixbuf.width = tile.width;
        pixbuf.height = tile.height;
        pixbuf.pixels32 = tile.pixels32;

        Tiny2D t2d = new Tiny2D(pixbuf);
View Full Code Here

TOP

Related Classes of com.tinyline.tiny2d.TinyBuffer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.