getActiveAttrib method
Implementation
ActiveInfo getActiveAttrib(Program v0, v1) {
startCheck("getActiveAttrib");
final dynamic temp = glGetActiveAttrib(_gl, v0.id, v1).dartify();
return ActiveInfo(temp['type'].toInt(), temp['name'], temp['size'].toInt());
// return ActiveInfo(
// val.type,
// val.name,
// val.size
// );
}