glColorPointerListIbm function opengl_glext

void glColorPointerListIbm(
  1. int size,
  2. int type,
  3. int stride,
  4. Pointer<Pointer<NativeType>> pointer,
  5. int ptrstride,
)
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,
  );
}