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