glSecondaryColorPointerListIbm function opengl_glext
void
glSecondaryColorPointerListIbm()
GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride)
Implementation
void glSecondaryColorPointerListIbm(
int size,
int type,
int stride,
Pointer<Pointer<NativeType>> pointer,
int ptrstride,
) {
final glSecondaryColorPointerListIbmAsFunction =
_glSecondaryColorPointerListIbm
.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 glSecondaryColorPointerListIbmAsFunction(
size,
type,
stride,
pointer,
ptrstride,
);
}