rlSetVertexAttribute method

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

Set vertex attribute data configuration

Implementation

@override
void rlSetVertexAttribute(
  int index,
  int compSize,
  int type,
  bool normalized,
  int stride,
  int offset,
) => _ffi.rlSetVertexAttribute(
  index,
  compSize,
  type,
  normalized,
  stride,
  offset,
);