gldtDrawElements function

void gldtDrawElements(
  1. int mode,
  2. int count,
  3. int type,
  4. int indices,
)

Implementation

void gldtDrawElements(int mode, int count, int type, int indices) {
  glDrawElements(mode, count, type, Pointer.fromAddress(indices));
}