glInterleavedArrays function
opengl
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);
}