Java tutorial
//package com.java2s; import android.opengl.GLES20; public class Main { public static void deleteTextureID(int texID) { GLES20.glDeleteTextures(1, new int[] { texID }, 0); } }