setC method

TextureC setC(
  1. TextureC o
)

Implementation

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