Examples of VBOVerticesBuffer


Examples of k8.buffer.vbo.VBOVerticesBuffer

     *
     * @param initialcapacity
     *          Initial capacity (number of vertices)
     */
    public static VerticesBuffer getInstance(int initialcapacity) {
        return ( GLContext.getCapabilities().GL_ARB_vertex_buffer_object ) ? new VBOVerticesBuffer(initialcapacity) : new VARVerticesBuffer(initialcapacity);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.