blob: 59dacf8afae238e3992475c6560423726caa5595 (
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 = 0; // FIXME: AMD needs this to be location 0 ? hu ?
public static final String VERTEX_ATTR_NAME = "gca_Vertices";
/** The Texture Coord index in an OGL object
*/
public static final int TEXCOORD_ATTR_IDX = 1;
public static final String TEXCOORD_ATTR_NAME = "gca_TexCoords";
/** The color index in an OGL object
*/
public static final int COLOR_ATTR_IDX = 2;
public static final String COLOR_ATTR_NAME = "gca_Colors";
}
|