Example usage for com.badlogic.gdx.graphics Mesh dispose

List of usage examples for com.badlogic.gdx.graphics Mesh dispose

Introduction

In this page you can find the example usage for com.badlogic.gdx.graphics Mesh dispose.

Prototype

public void dispose() 

Source Link

Document

Frees all resources associated with this Mesh

Usage

From source file:org.interreg.docexplore.reader.book.BookCover.java

License:Open Source License

public void dispose() {
    for (Mesh mesh : meshes)
        mesh.dispose();
}