rlSetVertexAttribute method

  1. @override
void rlSetVertexAttribute(
  1. num index,
  2. num compSize,
  3. num type,
  4. bool normalized,
  5. num stride,
  6. num offset,
)
override

Implementation

@override
void rlSetVertexAttribute(
  num index,
  num compSize,
  num type,
  bool normalized,
  num stride,
  num offset,
) => run(
  () => RaylibDebugLabels.rlSetVertexAttribute(index, compSize, type, normalized, stride, offset),
  () => rl.Rlgl.rlSetVertexAttribute.run6(
    index.toJS,
    compSize.toJS,
    type.toJS,
    normalized.toJS,
    stride.toJS,
    offset.toJS,
  ),
);