setD method
Copies the fields of o into this instance and returns this.
Implementation
@override
ImageD setD(ImageD o) {
width = o.width;
height = o.height;
mipmaps = o.mipmaps;
format = o.format;
data.setAll(0, o.data);
return this;
}