glInterleavedArrays function opengl

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

Implementation

void glInterleavedArrays(int format, int stride, Pointer<NativeType> pointer) {
  final glInterleavedArraysAsFunction = _glInterleavedArrays
      .cast<
        NativeFunction<
          Void Function(
            Uint32 format,
            Uint32 stride,
            Pointer<NativeType> pointer,
          )
        >
      >()
      .asFunction<
        void Function(int format, int stride, Pointer<NativeType> pointer)
      >();
  return glInterleavedArraysAsFunction(format, stride, pointer);
}