setD method

  1. @override
RlDrawCallD setD(
  1. RlDrawCallD o
)
override

Copies the fields of o into this instance and returns this.

Implementation

@override
RlDrawCallD setD(RlDrawCallD o) {
  mode = o.mode;
  vertexCount = o.vertexCount;
  vertexAlignment = o.vertexAlignment;
  textureId = o.textureId;
  return this;
}