All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.saintandreas.gl.shaders.Attribute Maven / Gradle / Ivy

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