setD method
Copies the fields of the Dart struct o into this instance.
Implementation
@override
TextureD setD(TextureD o) {
originalPointer ??= o.originalPointer;
id = o.id;
width = o.width;
height = o.height;
mipmaps = o.mipmaps;
format = o.format;
return this;
}