Back to project page Texample2.
The source code is released under:
CC0 1.0 Universal http://creativecommons.org/publicdomain/zero/1.0/legalcode
If you think the Android project Texample2 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.android.texample2; /*from w w w.j av a 2 s .com*/ public enum AttribVariable { A_Position(1, "a_Position"), A_TexCoordinate(2, "a_TexCoordinate"), A_MVPMatrixIndex(3, "a_MVPMatrixIndex"); private int mHandle; private String mName; private AttribVariable(int handle, String name) { mHandle = handle; mName = name; } public int getHandle() { return mHandle; } public String getName() { return mName; } }