glColorPointervIntel function opengl_glext

void glColorPointervIntel(
  1. int size,
  2. int type,
  3. Pointer<Pointer<Void>> pointer
)
GLAPI void APIENTRY glColorPointervINTEL (GLint size, GLenum type, const void **pointer)

Implementation

void glColorPointervIntel(int size, int type, Pointer<Pointer<Void>> pointer) {
  final glColorPointervIntelAsFunction = _glColorPointervIntel
      .cast<
        NativeFunction<
          Void Function(Int32 size, Uint32 type, Pointer<Pointer<Void>> pointer)
        >
      >()
      .asFunction<
        void Function(int size, int type, Pointer<Pointer<Void>> pointer)
      >();
  return glColorPointervIntelAsFunction(size, type, pointer);
}