setD method

TextureC setD(
  1. TextureD o
)

Implementation

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