glVertexPointervIntel function opengl_glext

void glVertexPointervIntel(
  1. int size,
  2. int type,
  3. Pointer<Pointer<NativeType>> pointer
)
GLAPI void APIENTRY glVertexPointervINTEL (GLint size, GLenum type, const void **pointer)

Implementation

void glVertexPointervIntel(
  int size,
  int type,
  Pointer<Pointer<NativeType>> pointer,
) {
  final glVertexPointervIntelAsFunction = _glVertexPointervIntel
      .cast<
        NativeFunction<
          Void Function(
            Int32 size,
            Uint32 type,
            Pointer<Pointer<NativeType>> pointer,
          )
        >
      >()
      .asFunction<
        void Function(int size, int type, Pointer<Pointer<NativeType>> pointer)
      >();
  return glVertexPointervIntelAsFunction(size, type, pointer);
}