glVertexPointerExt function opengl_glext

void glVertexPointerExt(
  1. int size,
  2. int type,
  3. int stride,
  4. int count,
  5. Pointer<NativeType> pointer,
)
GLAPI void APIENTRY glVertexPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer)

Implementation

void glVertexPointerExt(
  int size,
  int type,
  int stride,
  int count,
  Pointer<NativeType> pointer,
) {
  final glVertexPointerExtAsFunction = _glVertexPointerExt
      .cast<
        NativeFunction<
          Void Function(
            Int32 size,
            Uint32 type,
            Uint32 stride,
            Uint32 count,
            Pointer<NativeType> pointer,
          )
        >
      >()
      .asFunction<
        void Function(
          int size,
          int type,
          int stride,
          int count,
          Pointer<NativeType> pointer,
        )
      >();
  return glVertexPointerExtAsFunction(size, type, stride, count, pointer);
}