setValueV1f method
dynamic
setValueV1f(
- dynamic gl,
- dynamic v,
- dynamic textures
Implementation
setValueV1f(gl, v, textures) {
var cache = this.cache;
if (cache[0] == v) return;
gl.uniform1f(addr, v.toDouble());
cache[0] = v;
}