glSecondaryColorPointer function opengl_glext

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

Implementation

void glSecondaryColorPointer(
  int size,
  int type,
  int stride,
  Pointer<NativeType> pointer,
) {
  final glSecondaryColorPointerAsFunction = _glSecondaryColorPointer
      .cast<
        NativeFunction<
          Void Function(
            Int32 size,
            Uint32 type,
            Uint32 stride,
            Pointer<NativeType> pointer,
          )
        >
      >()
      .asFunction<
        void Function(
          int size,
          int type,
          int stride,
          Pointer<NativeType> pointer,
        )
      >();
  return glSecondaryColorPointerAsFunction(size, type, stride, pointer);
}