Java tutorial
//package com.java2s; //License from project: Apache License import android.opengl.GLES20; public class Main { /** * delete specific texture */ public static void deleteTex(final int tex) { final int[] texArray = new int[] { tex }; GLES20.glDeleteTextures(1, texArray, 0); } }