glColorPointerListIbm function opengl_glext
void
glColorPointerListIbm()
GLAPI void APIENTRY glColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride)
Implementation
void glColorPointerListIbm(
int size,
int type,
int stride,
Pointer<Pointer<NativeType>> pointer,
int ptrstride,
) {
final glColorPointerListIbmAsFunction = _glColorPointerListIbm
.cast<
NativeFunction<
Void Function(
Int32 size,
Uint32 type,
Int32 stride,
Pointer<Pointer<NativeType>> pointer,
Int32 ptrstride,
)
>
>()
.asFunction<
void Function(
int size,
int type,
int stride,
Pointer<Pointer<NativeType>> pointer,
int ptrstride,
)
>();
return glColorPointerListIbmAsFunction(
size,
type,
stride,
pointer,
ptrstride,
);
}