rlSetVertexAttribute method

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

Implementation

void rlSetVertexAttribute(
  int index,
  int compSize,
  int type,
  bool normalized,
  int stride,
  int offset,
) {
  return _rlSetVertexAttribute(
    index,
    compSize,
    type,
    normalized,
    stride,
    offset,
  );
}