Package com.ardor3d.scenegraph

Examples of com.ardor3d.scenegraph.ByteBufferData


        data = (ByteBufferData) capsule.readSavable("data", null);
        // XXX: transitional
        if (data == null) {
            final ByteBuffer buff = capsule.readByteBuffer("data", null);
            if (buff != null) {
                data = new ByteBufferData(buff);
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.scenegraph.ByteBufferData

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.