aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/graph/curve/opengl/shader/AttributeNames.java
blob: 9fe084522fe96cadd3847104dd2c6a2b966a2bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package jogamp.graph.curve.opengl.shader;

public class AttributeNames {
    /** The vertices index in an OGL object
     */
    public static final int VERTEX_ATTR_IDX = 1; // 0 is a generic special 0 ..
    public static final String VERTEX_ATTR_NAME = "gca_Vertices";

    /** The Texture Coord index in an OGL object
     */
    public static final int TEXCOORD_ATTR_IDX = 2;
    public static final String TEXCOORD_ATTR_NAME = "gca_TexCoords";
    
    /** The color index in an OGL object
     */
    public static final int COLOR_ATTR_IDX = 3;
    public static final String COLOR_ATTR_NAME = "gca_Colors";    
}