setValueM4 method
Implementation
void setValueM4(RenderingContext gl, Matrix4 v, [WebGLTextures? textures]) {
final cache = this.cache;
final elements = v.storage;
if (arraysEqual(cache, elements)) {
return;
}
gl.uniformMatrix4fv(addr, false, elements);
copyArray(cache, elements);
}