Back to project page min3d.
The source code is released under:
MIT License
If you think the Android project min3d 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.min3d.lib.vos; /*from ww w . j a v a 2s. c o m*/ import javax.microedition.khronos.opengles.GL10; /** * Structure to hold one OpenGL texture environment command. * * Is the equivalent of calling: * glTexEnvx(GL10.GL_TEXTURE_ENV, pname, param); */ public class TexEnvxVo { public int pname = GL10.GL_TEXTURE_ENV_MODE; public int param = GL10.GL_MODULATE; public TexEnvxVo() { } public TexEnvxVo(int $pname, int $param) { pname = $pname; param = $param; } /** * Convenience method */ public void setAll(int $pname, int $param) { pname = $pname; param = $param; } }