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