setC method

  1. @override
RlDrawCallD setC(
  1. RlDrawCallC o
)
override

Copies the fields of the native struct o into this instance.

Implementation

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