glSecondaryColorPointerListIbm function opengl_glext

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