glInterleavedArrays function

void glInterleavedArrays(
  1. int format,
  2. int stride,
  3. Pointer<Void> pointer
)
GLAPI void GLAPIENTRY glInterleavedArrays (GLenum format, GLsizei stride, const void *pointer)

Implementation

void glInterleavedArrays(int format, int stride, Pointer<Void> pointer) {
  final glInterleavedArraysLookupFunction = libGL.lookupFunction<
      Void Function(Uint32 format, Uint32 stride, Pointer<Void> pointer),
      void Function(int format, int stride,
          Pointer<Void> pointer)>('glInterleavedArrays');
  return glInterleavedArraysLookupFunction(format, stride, pointer);
}