Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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);
    }
}