Back to project page fun-gl.
The source code is released under:
Apache License
If you think the Android project fun-gl 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.jcxavier.android.opengl.engine.texture; //w w w.ja v a 2 s.c o m /** * Created on 13/03/2014. * * @author Joo Xavier <jcxavier@jcxavier.com> */ public enum TextureWrap { /** * The integer part of the texture coordinates is ignored in this mode */ REPEAT, /** * The texture coordinates are clamped to [0, 1] */ CLAMP_TO_EDGE }