is opengl Texture - Android android.opengl

Android examples for android.opengl:OpenGL Texture

Description

is opengl Texture

Demo Code


//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*/
}

Related Tutorials