setC method

ImageC setC(
  1. ImageC o
)

Implementation

ImageC setC(ImageC o) {
  data = o.data;
  width = o.width;
  height = o.height;
  mipmaps = o.mipmaps;
  format = o.format;
  return this;
}