
org.saintandreas.gl.shaders.Attribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glamour-lwjgl Show documentation
Show all versions of glamour-lwjgl Show documentation
Class wrappers for geometry, texture, shaders, etc
The newest version!
package org.saintandreas.gl.shaders;
public enum Attribute {
POSITION(0), TEX(1), NORMAL(2), COLOR(3), EXTRA_ATTR(4);
public final int location;
Attribute(int location) {
this.location = location;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy