setD method

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

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

Implementation

@override
TextureD setD(TextureD o) {
  id = o.id;
  width = o.width;
  height = o.height;
  mipmaps = o.mipmaps;
  format = o.format;
  return this;
}