setD method

  1. @override
ShaderD setD(
  1. ShaderD o
)
override

Copies the fields of o into this instance and returns this.

Implementation

@override
ShaderD setD(ShaderD o) {
  id = o.id;
  locs = .from(o.locs);
  return this;
}