setD method

FontC setD(
  1. FontD o
)

Implementation

FontC setD(FontD o) {
  baseSize = o.baseSize;
  glyphCount = o.glyphCount;
  glyphPadding = o.glyphPadding;
  o.onOriginalPointer((p) {
    texture = p.ref.texture;
    recs = p.ref.recs;
    glyphs = p.ref.glyphs;
  });
  return this;
}