Android examples for android.opengl:OpenGL Texture
delete opengl Target Texture
//package com.java2s; import android.opengl.GLES20; public class Main { public static void deleteTargetTexture(int... texture) { GLES20.glDeleteTextures(texture.length, texture, 0); }/*from ww w. j ava 2 s . c o m*/ }