PureArrayUniform constructor

PureArrayUniform(
  1. dynamic id,
  2. ActiveInfo activeInfo,
  3. dynamic addr
)

Implementation

PureArrayUniform(id, this.activeInfo, addr) {
  this.id = id;
  this.addr = addr;
  cache = {};
  size = activeInfo.size;
  type = activeInfo.type;
  setValue = getPureArraySetter(activeInfo.type);
}