Android examples for android.opengl:OpenGL Texture
is opengl Texture
//package com.java2s; import android.opengl.GLES20; public class Main { public static boolean isTexture(int texture) { return texture != 0 && GLES20.glIsTexture(texture); }/*from www . j a v a 2s . c o m*/ }