GLBufferAttribute constructor

GLBufferAttribute(
  1. int buffer,
  2. String type,
  3. int itemSize,
  4. int elementSize,
  5. int count,
)

Implementation

GLBufferAttribute(int buffer, String type, int itemSize, int elementSize, int count) : super() {
  this.buffer = buffer;
  this.type = type;
  this.itemSize = itemSize;
  this.elementSize = elementSize;
  this.count = count;

  version = 0;
}