public ShaderVertexAttribute(
     string name, 
     int location,
     ShaderVertexAttributeType type,
     int length)
 {
     _name = name;
     _location = location;
     _type = type;
     _length = length;
 }
Beispiel #2
0
 public ShaderVertexAttribute(
     string name,
     int location,
     ShaderVertexAttributeType type,
     int length)
 {
     _name     = name;
     _location = location;
     _type     = type;
     _length   = length;
 }